@saasmakers/eslint 0.1.13 → 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 +3 -1
- package/dist/eslint.config.mjs +3 -1
- package/package.json +2 -2
package/dist/eslint.config.cjs
CHANGED
|
@@ -22408,11 +22408,12 @@ const config = [
|
|
|
22408
22408
|
// Global ignores: don't lint build artifacts, cached folders, or other non-source files
|
|
22409
22409
|
{
|
|
22410
22410
|
ignores: [
|
|
22411
|
-
"*.md",
|
|
22412
22411
|
"**/.nuxt",
|
|
22412
|
+
"**/.output",
|
|
22413
22413
|
"**/.turbo",
|
|
22414
22414
|
"**/android",
|
|
22415
22415
|
"**/build",
|
|
22416
|
+
"**/coverage",
|
|
22416
22417
|
"**/dbschema",
|
|
22417
22418
|
"**/dist",
|
|
22418
22419
|
"**/dumps/*.json",
|
|
@@ -22442,6 +22443,7 @@ const config = [
|
|
|
22442
22443
|
}
|
|
22443
22444
|
},
|
|
22444
22445
|
rules: {
|
|
22446
|
+
"@typescript-eslint/no-unused-vars": ["error", { argsIgnorePattern: "^_" }],
|
|
22445
22447
|
"array-bracket-newline": ["error", { minItems: 3, multiline: true }],
|
|
22446
22448
|
"id-length": ["error", { exceptions: ["_", "t", "x", "y"], min: 2 }],
|
|
22447
22449
|
"no-undef": "off"
|
package/dist/eslint.config.mjs
CHANGED
|
@@ -22388,11 +22388,12 @@ const config = [
|
|
|
22388
22388
|
// Global ignores: don't lint build artifacts, cached folders, or other non-source files
|
|
22389
22389
|
{
|
|
22390
22390
|
ignores: [
|
|
22391
|
-
"*.md",
|
|
22392
22391
|
"**/.nuxt",
|
|
22392
|
+
"**/.output",
|
|
22393
22393
|
"**/.turbo",
|
|
22394
22394
|
"**/android",
|
|
22395
22395
|
"**/build",
|
|
22396
|
+
"**/coverage",
|
|
22396
22397
|
"**/dbschema",
|
|
22397
22398
|
"**/dist",
|
|
22398
22399
|
"**/dumps/*.json",
|
|
@@ -22422,6 +22423,7 @@ const config = [
|
|
|
22422
22423
|
}
|
|
22423
22424
|
},
|
|
22424
22425
|
rules: {
|
|
22426
|
+
"@typescript-eslint/no-unused-vars": ["error", { argsIgnorePattern: "^_" }],
|
|
22425
22427
|
"array-bracket-newline": ["error", { minItems: 3, multiline: true }],
|
|
22426
22428
|
"id-length": ["error", { exceptions: ["_", "t", "x", "y"], min: 2 }],
|
|
22427
22429
|
"no-undef": "off"
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saasmakers/eslint",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.15",
|
|
5
5
|
"private": false,
|
|
6
6
|
"description": "Shared ESLint config and rules for SaaS Makers projects",
|
|
7
7
|
"license": "MIT",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"eslint-plugin-turbo": "2.7.2",
|
|
43
43
|
"eslint-plugin-vue": "10.6.2",
|
|
44
44
|
"typescript-eslint": "8.51.0",
|
|
45
|
-
"@saasmakers/config": "0.1.
|
|
45
|
+
"@saasmakers/config": "0.1.22"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@eslint/config-inspector": "1.4.2",
|