|
2 | 2 | "extends": [
|
3 | 3 | "plugin:@typescript-eslint/recommended",
|
4 | 4 | "eslint-config-airbnb-base",
|
5 |
| - "plugin:vue/vue3-recommended" |
| 5 | + "plugin:vue/vue3-recommended", |
| 6 | + "plugin:prettier/recommended" |
6 | 7 | ],
|
7 | 8 | "env": {
|
8 | 9 | "browser": true,
|
9 | 10 | "node": true,
|
10 | 11 | "jest": true,
|
11 | 12 | "es6": true
|
12 | 13 | },
|
13 |
| - "globals": { |
14 |
| - "cy": "readonly", |
15 |
| - "PKG_VERSION": true |
16 |
| - }, |
17 | 14 | "plugins": [
|
18 | 15 | "vue",
|
19 | 16 | "@typescript-eslint"
|
20 | 17 | ],
|
| 18 | + "globals": { |
| 19 | + "cy": "readonly", |
| 20 | + "PKG_VERSION": true |
| 21 | + }, |
21 | 22 | "parserOptions": {
|
22 | 23 | "parser": "@typescript-eslint/parser",
|
23 | 24 | "sourceType": "module",
|
|
35 | 36 | ]
|
36 | 37 | },
|
37 | 38 | "rules": {
|
38 |
| - "camelcase": 0, |
39 |
| - "no-new": 1, |
40 |
| - "new-cap": 0, |
41 |
| - "no-underscore-dangle": 0, |
42 |
| - "no-confusing-arrow": 0, |
43 |
| - "func-style": 0, |
| 39 | + // code style config |
| 40 | + "no-continue": "off", |
| 41 | + "no-console": "off", |
| 42 | + "no-restricted-syntax": "off", |
| 43 | + "no-plusplus": "off", |
| 44 | + "no-param-reassign": "off", |
| 45 | + "no-shadow": "off", |
| 46 | + "no-underscore-dangle": "off", |
44 | 47 | "no-unused-vars": "off",
|
45 |
| - "no-console": [ |
46 |
| - "error", |
47 |
| - { "allow": |
48 |
| - ["warn", "error"] |
49 |
| - } |
50 |
| - ], |
51 |
| - "@typescript-eslint/no-explicit-any": 0, |
| 48 | + "no-unused-expressions": "off", |
| 49 | + "no-return-assign": "off", |
| 50 | + "no-use-before-define": "off", |
| 51 | + "func-names": "off", |
| 52 | + "guard-for-in": "off", |
| 53 | + "consistent-return": "off", |
| 54 | + "no-restricted-globals": "off", |
| 55 | + "default-param-last": "off", |
| 56 | + "default-case": "off", |
| 57 | + "prefer-spread": "off", |
| 58 | + |
| 59 | + // import config |
| 60 | + "import/extensions": "off", |
| 61 | + "import/no-unresolved": "off", |
| 62 | + "import/no-extraneous-dependencies": "off", |
| 63 | + "import/prefer-default-export": "off", |
| 64 | + "import/no-relative-packages": "off", |
| 65 | + |
| 66 | + // typescript config |
| 67 | + "@typescript-eslint/no-explicit-any": "off", |
| 68 | + "@typescript-eslint/explicit-module-boundary-types": "off", |
52 | 69 | "@typescript-eslint/no-require-imports": 0,
|
53 | 70 | "@typescript-eslint/no-var-requires": 0,
|
54 | 71 | "@typescript-eslint/prefer-for-of": 0,
|
55 |
| - "prefer-default-export": 0, |
56 |
| - "max-len": 0, |
57 |
| - "@typescript-eslint/ban-ts-ignore": 0, |
58 |
| - "no-useless-constructor": "off", |
59 |
| - "no-plusplus": [ |
60 |
| - "error", |
61 |
| - { |
62 |
| - "allowForLoopAfterthoughts": true |
63 |
| - } |
64 |
| - ], |
65 |
| - "import/no-unresolved": 0, |
66 |
| - "import/no-named-as-default": 0, |
67 |
| - "treatUndefinedAsUnspecified": 0, |
68 |
| - "no-use-before-define": [ |
69 |
| - 0, |
70 |
| - { |
71 |
| - "functions": false, |
72 |
| - "classes": false |
73 |
| - } |
74 |
| - ], |
75 |
| - "no-shadow": 0, |
76 |
| - "no-unused-expressions": 0, |
77 | 72 | "@typescript-eslint/ban-types": 0,
|
78 |
| - "no-proto": 0, |
79 |
| - "consistent-return": 0, |
80 |
| - "@typescript-eslint/explicit-function-return-type": 0, |
81 |
| - "@typescript-eslint/explicit-module-boundary-types": 0, |
82 |
| - "import/export": 0, |
83 |
| - "no-restricted-globals": 0, |
84 | 73 | "@typescript-eslint/no-unused-vars": 0,
|
85 |
| - "import/no-cycle": 0, |
86 |
| - "default-case": 0, |
87 |
| - "import/extensions": 0, |
88 |
| - "no-throw-literal": 0, |
89 |
| - "no-return-assign": 0, |
90 |
| - "no-continue": 0, |
91 |
| - "func-names": 0, |
92 |
| - "prefer-spread": 0, |
93 | 74 | "@typescript-eslint/no-empty-function": 0,
|
94 | 75 | "@typescript-eslint/ban-ts-comment": 0,
|
95 |
| - "import/no-extraneous-dependencies": [ |
96 |
| - "error", |
97 |
| - { |
98 |
| - "devDependencies": true |
99 |
| - } |
100 |
| - ], |
101 |
| - "import/no-dynamic-require": 0, |
102 |
| - "global-require": 0, |
103 |
| - "no-constant-condition": [ |
104 |
| - "error", |
105 |
| - { |
106 |
| - "checkLoops": false |
107 |
| - } |
108 |
| - ], |
109 |
| - "vue/require-default-prop": 0, |
110 |
| - "vue/max-attributes-per-line": ["error", { |
111 |
| - "singleline": { |
112 |
| - "max": 4 |
113 |
| - } |
114 |
| - }] |
| 76 | + "vue/require-default-prop": 0 |
115 | 77 | },
|
116 | 78 | "overrides": [
|
117 | 79 | {
|
118 | 80 | "files": ["*.vue"],
|
119 | 81 | "rules": {
|
120 |
| - "indent": 2, |
121 |
| - "vue/html-indent": [2, 2], |
122 |
| - "vue/return-in-computed-property": 1, |
123 |
| - "vue/order-in-components": 2, |
124 | 82 | "vue/component-name-in-template-casing": [2, "kebab-case"],
|
125 | 83 | "vue/require-default-prop": 0
|
126 | 84 | }
|
|
142 | 100 | }
|
143 | 101 | },
|
144 | 102 | {
|
145 |
| - // enable the rule specifically for TypeScript files |
146 | 103 | "files": [
|
147 | 104 | "*.ts",
|
148 | 105 | "*.tsx"
|
149 | 106 | ],
|
150 | 107 | "rules": {
|
151 | 108 | "@typescript-eslint/explicit-function-return-type": 0
|
152 | 109 | }
|
| 110 | + }, |
| 111 | + { |
| 112 | + "files": [ |
| 113 | + "*.test.js" |
| 114 | + ], |
| 115 | + "rules": { |
| 116 | + "import/no-dynamic-require": "off", |
| 117 | + "global-require": "off" |
| 118 | + } |
153 | 119 | }
|
154 | 120 | ]
|
155 | 121 | }
|
0 commit comments