@w0s/eslint-config 6.0.1 → 6.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/eslint.config.js +3 -3
- package/package.json +1 -1
package/eslint.config.js
CHANGED
|
@@ -28,9 +28,6 @@ export default tseslint.config(
|
|
|
28
28
|
{
|
|
29
29
|
languageOptions: {
|
|
30
30
|
ecmaVersion: 'latest', // TODO: デフォルト値は latest だが、明示的に指定しないと Top-level await で Parsing error が発生する
|
|
31
|
-
parserOptions: {
|
|
32
|
-
project: true,
|
|
33
|
-
},
|
|
34
31
|
},
|
|
35
32
|
plugins: {
|
|
36
33
|
pluginJsdoc,
|
|
@@ -40,6 +37,9 @@ export default tseslint.config(
|
|
|
40
37
|
files: ['**/*.ts'],
|
|
41
38
|
languageOptions: {
|
|
42
39
|
parser: parserTypeScript,
|
|
40
|
+
parserOptions: {
|
|
41
|
+
project: true,
|
|
42
|
+
},
|
|
43
43
|
},
|
|
44
44
|
rules: {
|
|
45
45
|
...pluginTypeScript.configs['strict-type-checked'].rules,
|