@ntnyq/eslint-config 2.7.2 → 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 +2 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
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: "^_",
|
package/dist/index.js
CHANGED
|
@@ -751,7 +751,8 @@ var typescriptCore = tseslint.config({
|
|
|
751
751
|
"@typescript-eslint/no-unused-vars": [
|
|
752
752
|
"error",
|
|
753
753
|
{
|
|
754
|
-
|
|
754
|
+
// Args after the last used will be reported
|
|
755
|
+
args: "after-used",
|
|
755
756
|
argsIgnorePattern: "^_",
|
|
756
757
|
caughtErrors: "all",
|
|
757
758
|
caughtErrorsIgnorePattern: "^_",
|