diff --git a/.vscode/settings.json b/.vscode/settings.json index 960b64ffb..025d86f9c 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,7 +1,12 @@ { + "css.lint.unknownAtRules": "ignore", "editor.codeActionsOnSave": { "source.fixAll.eslint": true }, + "eslint.validate": [ + "vue", + "typescript" + ], "[html]": { "editor.defaultFormatter": "Vue.volar" }, @@ -14,10 +19,5 @@ "[json]": { "editor.defaultFormatter": "vscode.json-language-features" }, - "eslint.validate": [ - "vue", - "typescript" - ], - "css.lint.unknownAtRules": "ignore", "volar.inlayHints.eventArgumentInInlineHandlers": false } \ No newline at end of file diff --git a/apps/web/.eslintrc b/apps/web/.eslintrc index 9009c65f6..2b7a8f6c2 100644 --- a/apps/web/.eslintrc +++ b/apps/web/.eslintrc @@ -21,8 +21,16 @@ "@typescript-eslint" ], "rules": { - "max-len": ["error", { "code": 200, "ignoreStrings": true, "comments":300, "ignoreTemplateLiterals": true }], - "vue/multi-word-component-names": "off", + "max-len": [ + "error", + { + "code": 200, + "ignoreStrings": true, + "comments": 300, + "ignoreTemplateLiterals": true + } + ], + "vue/multi-word-component-names": "off" }, "ignorePatterns": [ "**/node_modules/**", diff --git a/apps/web/src/App.vue b/apps/web/src/App.vue index 5ea62b95d..b318984b7 100644 --- a/apps/web/src/App.vue +++ b/apps/web/src/App.vue @@ -1,6 +1,27 @@