@ntsim/oxlint-config 0.2.0 → 0.3.0
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.d.mts +0 -3
- package/dist/index.mjs +0 -5
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -194,9 +194,6 @@ declare const baseConfig: {
|
|
|
194
194
|
variables: boolean;
|
|
195
195
|
}];
|
|
196
196
|
"import/consistent-type-specifier-style": "off";
|
|
197
|
-
"import/extensions": ["error", string, {
|
|
198
|
-
ignorePackages: boolean;
|
|
199
|
-
}];
|
|
200
197
|
"import/first": "error";
|
|
201
198
|
"import/no-absolute-path": "error";
|
|
202
199
|
"import/no-anonymous-default-export": ["error", {
|
package/dist/index.mjs
CHANGED
|
@@ -272,11 +272,6 @@ const baseConfig = defineConfig({
|
|
|
272
272
|
variables: true
|
|
273
273
|
}],
|
|
274
274
|
"import/consistent-type-specifier-style": "off",
|
|
275
|
-
"import/extensions": [
|
|
276
|
-
"error",
|
|
277
|
-
"always",
|
|
278
|
-
{ ignorePackages: true }
|
|
279
|
-
],
|
|
280
275
|
"import/first": "error",
|
|
281
276
|
"import/no-absolute-path": "error",
|
|
282
277
|
"import/no-anonymous-default-export": ["error", {
|