eslint-config-decent 1.2.5 → 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 -9
- package/dist/index.mjs +0 -9
- package/package.json +1 -1
- package/src/index.ts +0 -9
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,14 +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-member-access": "off"
|
|
720
|
-
}
|
|
721
|
-
},
|
|
722
713
|
{
|
|
723
714
|
name: "eslint-config-decent/tests",
|
|
724
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,14 +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-member-access": "off"
|
|
702
|
-
}
|
|
703
|
-
},
|
|
704
695
|
{
|
|
705
696
|
name: "eslint-config-decent/tests",
|
|
706
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,14 +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-member-access': 'off',
|
|
110
|
-
},
|
|
111
|
-
},
|
|
112
103
|
{
|
|
113
104
|
name: 'eslint-config-decent/tests',
|
|
114
105
|
files: ['**/*.tests.ts', 'tests/tests.ts'],
|