eslint-config-decent 1.2.6 → 1.2.7
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/dist/index.cjs +0 -10
- package/dist/index.mjs +0 -10
- package/package.json +1 -1
- package/src/index.ts +0 -10
package/dist/index.cjs
CHANGED
|
@@ -646,7 +646,6 @@ function defaultConfig(options) {
|
|
|
646
646
|
},
|
|
647
647
|
parserOptions: {
|
|
648
648
|
projectService: {
|
|
649
|
-
allowDefaultProject: ["./*.{js,cjs,mjs}"],
|
|
650
649
|
defaultProject: "tsconfig.json"
|
|
651
650
|
},
|
|
652
651
|
tsconfigRootDir: undefined,
|
|
@@ -711,15 +710,6 @@ function defaultConfig(options) {
|
|
|
711
710
|
},
|
|
712
711
|
...configs$8.cjs
|
|
713
712
|
},
|
|
714
|
-
{
|
|
715
|
-
name: "eslint-config-decent/js-cleanup",
|
|
716
|
-
files: ["**/*.js", "**/*.cjs", "**/*.mjs"],
|
|
717
|
-
rules: {
|
|
718
|
-
"@typescript-eslint/no-unsafe-assignment": "off",
|
|
719
|
-
"@typescript-eslint/no-unsafe-call": "off",
|
|
720
|
-
"@typescript-eslint/no-unsafe-member-access": "off"
|
|
721
|
-
}
|
|
722
|
-
},
|
|
723
713
|
{
|
|
724
714
|
name: "eslint-config-decent/tests",
|
|
725
715
|
files: ["**/*.tests.ts", "tests/tests.ts"],
|
package/dist/index.mjs
CHANGED
|
@@ -628,7 +628,6 @@ function defaultConfig(options) {
|
|
|
628
628
|
},
|
|
629
629
|
parserOptions: {
|
|
630
630
|
projectService: {
|
|
631
|
-
allowDefaultProject: ["./*.{js,cjs,mjs}"],
|
|
632
631
|
defaultProject: "tsconfig.json"
|
|
633
632
|
},
|
|
634
633
|
tsconfigRootDir: import.meta.dirname,
|
|
@@ -693,15 +692,6 @@ function defaultConfig(options) {
|
|
|
693
692
|
},
|
|
694
693
|
...configs$8.cjs
|
|
695
694
|
},
|
|
696
|
-
{
|
|
697
|
-
name: "eslint-config-decent/js-cleanup",
|
|
698
|
-
files: ["**/*.js", "**/*.cjs", "**/*.mjs"],
|
|
699
|
-
rules: {
|
|
700
|
-
"@typescript-eslint/no-unsafe-assignment": "off",
|
|
701
|
-
"@typescript-eslint/no-unsafe-call": "off",
|
|
702
|
-
"@typescript-eslint/no-unsafe-member-access": "off"
|
|
703
|
-
}
|
|
704
|
-
},
|
|
705
695
|
{
|
|
706
696
|
name: "eslint-config-decent/tests",
|
|
707
697
|
files: ["**/*.tests.ts", "tests/tests.ts"],
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -35,7 +35,6 @@ export function defaultConfig(options?: DefaultConfigOptions): ConfigWithExtends
|
|
|
35
35
|
},
|
|
36
36
|
parserOptions: {
|
|
37
37
|
projectService: {
|
|
38
|
-
allowDefaultProject: ['./*.{js,cjs,mjs}'],
|
|
39
38
|
defaultProject: 'tsconfig.json',
|
|
40
39
|
},
|
|
41
40
|
tsconfigRootDir: import.meta.dirname,
|
|
@@ -101,15 +100,6 @@ export function defaultConfig(options?: DefaultConfigOptions): ConfigWithExtends
|
|
|
101
100
|
},
|
|
102
101
|
...eslintConfigs.cjs,
|
|
103
102
|
},
|
|
104
|
-
{
|
|
105
|
-
name: 'eslint-config-decent/js-cleanup',
|
|
106
|
-
files: ['**/*.js', '**/*.cjs', '**/*.mjs'],
|
|
107
|
-
rules: {
|
|
108
|
-
'@typescript-eslint/no-unsafe-assignment': 'off',
|
|
109
|
-
'@typescript-eslint/no-unsafe-call': 'off',
|
|
110
|
-
'@typescript-eslint/no-unsafe-member-access': 'off',
|
|
111
|
-
},
|
|
112
|
-
},
|
|
113
103
|
{
|
|
114
104
|
name: 'eslint-config-decent/tests',
|
|
115
105
|
files: ['**/*.tests.ts', 'tests/tests.ts'],
|