@ntnyq/eslint-config 2.7.1 → 2.7.3
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 +4 -1
- package/dist/index.d.cts +143 -138
- package/dist/index.d.ts +143 -138
- package/dist/index.js +4 -1
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -859,7 +859,8 @@ var typescriptCore = import_typescript_eslint.default.config({
|
|
|
859
859
|
"@typescript-eslint/no-unused-vars": [
|
|
860
860
|
"error",
|
|
861
861
|
{
|
|
862
|
-
|
|
862
|
+
// Args after the last used will be reported
|
|
863
|
+
args: "after-used",
|
|
863
864
|
argsIgnorePattern: "^_",
|
|
864
865
|
caughtErrors: "all",
|
|
865
866
|
caughtErrorsIgnorePattern: "^_",
|
|
@@ -1366,6 +1367,8 @@ var vue = defineConfig([
|
|
|
1366
1367
|
...import_typescript_eslint.default.config({
|
|
1367
1368
|
name: "ntnyq/vue/ts",
|
|
1368
1369
|
files: [GLOB_VUE],
|
|
1370
|
+
// TODO: Remove this when `typescript-eslint` is aligned with `eslint`
|
|
1371
|
+
// @ts-expect-error - `typescript-eslint` is not aligned with eslint
|
|
1369
1372
|
extends: typescriptCore
|
|
1370
1373
|
}),
|
|
1371
1374
|
{
|