@saasmakers/eslint 0.1.20 → 0.1.22
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 +3 -2
- package/dist/eslint.config.mjs +3 -2
- package/package.json +1 -1
package/dist/eslint.config.cjs
CHANGED
|
@@ -22478,7 +22478,7 @@ const config = [
|
|
|
22478
22478
|
},
|
|
22479
22479
|
rules: {
|
|
22480
22480
|
"@typescript-eslint/no-non-null-assertion": "off",
|
|
22481
|
-
"@typescript-eslint/no-unused-vars": ["error", { argsIgnorePattern: "^_" }],
|
|
22481
|
+
"@typescript-eslint/no-unused-vars": ["error", { argsIgnorePattern: "^_", caughtErrorsIgnorePattern: "^_", varsIgnorePattern: "^_" }],
|
|
22482
22482
|
"array-bracket-newline": ["error", { minItems: 3, multiline: true }],
|
|
22483
22483
|
"id-length": ["error", { exceptions: ["_", "n", "t", "x", "y"], min: 2 }],
|
|
22484
22484
|
"no-undef": "off"
|
|
@@ -22587,7 +22587,8 @@ const config = [
|
|
|
22587
22587
|
})
|
|
22588
22588
|
]),
|
|
22589
22589
|
rules: {
|
|
22590
|
-
"n/no-unsupported-features/node-builtins": "off"
|
|
22590
|
+
"n/no-unsupported-features/node-builtins": "off",
|
|
22591
|
+
"vue/multi-word-component-names": "off"
|
|
22591
22592
|
}
|
|
22592
22593
|
}
|
|
22593
22594
|
];
|
package/dist/eslint.config.mjs
CHANGED
|
@@ -22450,7 +22450,7 @@ const config = [
|
|
|
22450
22450
|
},
|
|
22451
22451
|
rules: {
|
|
22452
22452
|
"@typescript-eslint/no-non-null-assertion": "off",
|
|
22453
|
-
"@typescript-eslint/no-unused-vars": ["error", { argsIgnorePattern: "^_" }],
|
|
22453
|
+
"@typescript-eslint/no-unused-vars": ["error", { argsIgnorePattern: "^_", caughtErrorsIgnorePattern: "^_", varsIgnorePattern: "^_" }],
|
|
22454
22454
|
"array-bracket-newline": ["error", { minItems: 3, multiline: true }],
|
|
22455
22455
|
"id-length": ["error", { exceptions: ["_", "n", "t", "x", "y"], min: 2 }],
|
|
22456
22456
|
"no-undef": "off"
|
|
@@ -22559,7 +22559,8 @@ const config = [
|
|
|
22559
22559
|
})
|
|
22560
22560
|
]),
|
|
22561
22561
|
rules: {
|
|
22562
|
-
"n/no-unsupported-features/node-builtins": "off"
|
|
22562
|
+
"n/no-unsupported-features/node-builtins": "off",
|
|
22563
|
+
"vue/multi-word-component-names": "off"
|
|
22563
22564
|
}
|
|
22564
22565
|
}
|
|
22565
22566
|
];
|