eslint-config-seek 0.0.0-eslint-9-etc-20240922063038 → 0.0.0-eslint-9-etc-20240922064021
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/base.js +4 -1
- package/package.json +1 -1
package/base.js
CHANGED
|
@@ -117,7 +117,7 @@ module.exports = [
|
|
|
117
117
|
settings,
|
|
118
118
|
rules: baseRules,
|
|
119
119
|
},
|
|
120
|
-
...[tseslint.configs.recommended, tseslint.configs.stylistic].map(
|
|
120
|
+
...[...tseslint.configs.recommended, ...tseslint.configs.stylistic].map(
|
|
121
121
|
(config) => ({
|
|
122
122
|
...config,
|
|
123
123
|
files: [`**/*.{${tsExtensions}}`],
|
|
@@ -125,6 +125,9 @@ module.exports = [
|
|
|
125
125
|
),
|
|
126
126
|
{
|
|
127
127
|
files: [`**/*.{${tsExtensions}}`],
|
|
128
|
+
plugins: {
|
|
129
|
+
'import-x': importX,
|
|
130
|
+
},
|
|
128
131
|
|
|
129
132
|
languageOptions: {
|
|
130
133
|
parser: tseslint.parser,
|