Skip to content

Commit

Permalink
small updates
Browse files Browse the repository at this point in the history
  • Loading branch information
sharknoon committed Oct 26, 2023
1 parent dfe66e2 commit e3127a5
Show file tree
Hide file tree
Showing 53 changed files with 2,962 additions and 3,457 deletions.
17 changes: 9 additions & 8 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
/* eslint-env node */
require("@rushstack/eslint-patch/modern-module-resolution");
require('@rushstack/eslint-patch/modern-module-resolution')

module.exports = {
root: true,
extends: [
"plugin:vue/vue3-recommended",
"eslint:recommended",
"@vue/eslint-config-typescript/recommended",
"@vue/eslint-config-prettier",
'extends': [
'plugin:vue/vue3-recommended',
'eslint:recommended',
'@vue/eslint-config-typescript/recommended',
'@vue/eslint-config-prettier/skip-formatting'
],
parserOptions: {
ecmaVersion: "latest",
ecmaVersion: 'latest'
},
};
ignorePatterns: ["public/place-atlas"],
}
9 changes: 8 additions & 1 deletion .prettierrc.json
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
{}
{
"$schema": "https://json.schemastore.org/prettierrc",
"semi": false,
"tabWidth": 2,
"singleQuote": true,
"printWidth": 100,
"trailingComma": "none"
}
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18-alpine as build-stage
FROM node:21-alpine as build-stage
WORKDIR /app
COPY package*.json ./
RUN npm ci
Expand Down
Loading

0 comments on commit e3127a5

Please sign in to comment.