@saasmakers/eslint 0.1.14 → 0.1.15
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/eslint.config.cjs +1 -0
- package/dist/eslint.config.mjs +1 -0
- package/package.json +1 -1
package/dist/eslint.config.cjs
CHANGED
|
@@ -22443,6 +22443,7 @@ const config = [
|
|
|
22443
22443
|
}
|
|
22444
22444
|
},
|
|
22445
22445
|
rules: {
|
|
22446
|
+
"@typescript-eslint/no-unused-vars": ["error", { argsIgnorePattern: "^_" }],
|
|
22446
22447
|
"array-bracket-newline": ["error", { minItems: 3, multiline: true }],
|
|
22447
22448
|
"id-length": ["error", { exceptions: ["_", "t", "x", "y"], min: 2 }],
|
|
22448
22449
|
"no-undef": "off"
|
package/dist/eslint.config.mjs
CHANGED
|
@@ -22423,6 +22423,7 @@ const config = [
|
|
|
22423
22423
|
}
|
|
22424
22424
|
},
|
|
22425
22425
|
rules: {
|
|
22426
|
+
"@typescript-eslint/no-unused-vars": ["error", { argsIgnorePattern: "^_" }],
|
|
22426
22427
|
"array-bracket-newline": ["error", { minItems: 3, multiline: true }],
|
|
22427
22428
|
"id-length": ["error", { exceptions: ["_", "t", "x", "y"], min: 2 }],
|
|
22428
22429
|
"no-undef": "off"
|