1234567891011121314151617181920212223242526272829303132333435 |
- {
- "env": {
- "browser": true,
- "es2021": true,
- "node": true
- },
- "extends": [
- "eslint:recommended",
- "plugin:vue/vue3-recommended"
- ],
- "parserOptions": {
- "ecmaVersion": 2021,
- "sourceType": "module"
- },
- "plugins": [
- "vue"
- ],
- "rules": {
- "no-console": "off",
- "no-unused-vars": "warn",
- "vue/no-unused-components": "warn",
- "semi": [2, "never"],
- "semi-spacing": [2, {
- "before": false,
- "after": true
- }],
- "quotes": [2, "single", {
- "avoidEscape": true,
- "allowTemplateLiterals": true
- }],
- "array-bracket-spacing": ["error", "always"],
- "computed-property-spacing": ["error", "never"],
- "object-curly-spacing": ["error", "always"]
- }
- }
|