ignore-lint-errors 1.2.0 → 1.2.1
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/README.md +15 -9
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -74,33 +74,39 @@ pnpx ignore-lint-errors --root <path/to/your/project>
|
|
|
74
74
|
|
|
75
75
|
Pass `--src` to lint specific files.
|
|
76
76
|
|
|
77
|
+
eslint:
|
|
78
|
+
|
|
77
79
|
```sh
|
|
78
|
-
#
|
|
80
|
+
# Specific files
|
|
79
81
|
pnpx ignore-lint-errors --linter eslint --src app/components/example-1.gts app/templates/example-2.gts
|
|
80
82
|
|
|
81
|
-
#
|
|
83
|
+
# Specific directories
|
|
82
84
|
pnpx ignore-lint-errors --linter eslint --src app tests
|
|
83
85
|
|
|
84
|
-
#
|
|
86
|
+
# Globs
|
|
85
87
|
pnpx ignore-lint-errors --linter eslint --src app/{components,templates}/**/*.gts
|
|
86
88
|
```
|
|
87
89
|
|
|
90
|
+
oxlint:
|
|
91
|
+
|
|
88
92
|
```sh
|
|
89
|
-
#
|
|
93
|
+
# Specific files
|
|
90
94
|
pnpx ignore-lint-errors --linter oxlint --src app/components/example-1.gts app/templates/example-2.gts
|
|
91
95
|
|
|
92
|
-
#
|
|
96
|
+
# Specific directories
|
|
93
97
|
pnpx ignore-lint-errors --linter oxlint --src app tests
|
|
94
98
|
|
|
95
|
-
#
|
|
99
|
+
# Globs
|
|
96
100
|
pnpx ignore-lint-errors --linter oxlint --src app/{components,templates}/**/*.gts
|
|
97
101
|
```
|
|
98
102
|
|
|
103
|
+
stylelint:
|
|
104
|
+
|
|
99
105
|
```sh
|
|
100
|
-
#
|
|
106
|
+
# Specific files
|
|
101
107
|
pnpx ignore-lint-errors --linter stylelint --src app/components/example-1.module.css app/templates/example-2.module.css
|
|
102
108
|
|
|
103
|
-
#
|
|
109
|
+
# Globs
|
|
104
110
|
pnpx ignore-lint-errors --linter stylelint --src app/components/**/*.css
|
|
105
111
|
```
|
|
106
112
|
|
|
@@ -127,7 +133,7 @@ pnpm build
|
|
|
127
133
|
## Compatibility
|
|
128
134
|
|
|
129
135
|
- Node.js v22 or above
|
|
130
|
-
- Tested against `eslint@
|
|
136
|
+
- Tested against `eslint@v10`, `glint@v2`, `oxlint@v1`, `stylelint@v17`, `typescript@v6`
|
|
131
137
|
|
|
132
138
|
|
|
133
139
|
## Contributing
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ignore-lint-errors",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "Codemod to ignore lint errors per line",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"codemod",
|
|
@@ -31,18 +31,18 @@
|
|
|
31
31
|
"yargs": "^18.1.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@changesets/cli": "^3.0.
|
|
35
|
-
"@codemod-utils/tests": "^3.
|
|
36
|
-
"@ijlee2-frontend-configs/changesets": "^3.0.
|
|
37
|
-
"@ijlee2-frontend-configs/eslint-config-node": "^4.2.
|
|
38
|
-
"@ijlee2-frontend-configs/prettier": "^3.3.
|
|
34
|
+
"@changesets/cli": "^3.0.2",
|
|
35
|
+
"@codemod-utils/tests": "^3.3.0",
|
|
36
|
+
"@ijlee2-frontend-configs/changesets": "^3.0.2",
|
|
37
|
+
"@ijlee2-frontend-configs/eslint-config-node": "^4.2.4",
|
|
38
|
+
"@ijlee2-frontend-configs/prettier": "^3.3.4",
|
|
39
39
|
"@sondr3/minitest": "^0.1.2",
|
|
40
|
-
"@tsconfig/node22": "^22.0.
|
|
40
|
+
"@tsconfig/node22": "^22.0.6",
|
|
41
41
|
"@tsconfig/strictest": "^2.0.8",
|
|
42
42
|
"@types/node": "^22.20.1",
|
|
43
43
|
"@types/yargs": "^17.0.35",
|
|
44
|
-
"concurrently": "^10.0.
|
|
45
|
-
"eslint": "^10.
|
|
44
|
+
"concurrently": "^10.0.5",
|
|
45
|
+
"eslint": "^10.10.0",
|
|
46
46
|
"prettier": "^3.9.6",
|
|
47
47
|
"typescript": "^6.0.3"
|
|
48
48
|
},
|