@kitschpatrol/eslint-config 4.3.2 → 4.3.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/eslint.config.cjs +2 -2
- package/package.json +2 -2
- package/readme.md +1 -1
package/eslint.config.cjs
CHANGED
|
@@ -234,7 +234,7 @@ module.exports = {
|
|
|
234
234
|
'mdx/code-blocks': false,
|
|
235
235
|
},
|
|
236
236
|
},
|
|
237
|
-
//
|
|
237
|
+
// TypeScript
|
|
238
238
|
{
|
|
239
239
|
extends: [...extendsTypescript, ...extendsSuffix],
|
|
240
240
|
files: ['*.ts', '*.tsx', '*.mts', '*.cts'],
|
|
@@ -257,7 +257,7 @@ module.exports = {
|
|
|
257
257
|
...globalRulesTypescript,
|
|
258
258
|
},
|
|
259
259
|
},
|
|
260
|
-
//
|
|
260
|
+
// JavaScript
|
|
261
261
|
{
|
|
262
262
|
extends: [...extendsSuffix],
|
|
263
263
|
files: ['*.jsx', '*.mjs', '*.cjs', '.js'],
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kitschpatrol/eslint-config",
|
|
3
|
-
"version": "4.3.
|
|
3
|
+
"version": "4.3.3",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"description": "
|
|
5
|
+
"description": "ESLint config for @kitschpatrol/shared-config",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "git@github.com:kitschpatrol/shared-config.git",
|
package/readme.md
CHANGED
|
@@ -30,7 +30,7 @@ To use just this ESLint config in isolation:
|
|
|
30
30
|
|
|
31
31
|
## Usage
|
|
32
32
|
|
|
33
|
-
The ESLint binary should be picked up automatically by
|
|
33
|
+
The ESLint binary should be picked up automatically by VS Code plugins.
|
|
34
34
|
|
|
35
35
|
You can call it directly, or use the script bundled with the config.
|
|
36
36
|
|