@cookshack/eslint-config 0.1.6 → 1.0.0
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/index.cjs +2 -4
- package/dist/index.js +2 -4
- package/index.js +2 -4
- package/package.json +2 -2
package/dist/index.cjs
CHANGED
|
@@ -84,14 +84,12 @@ exports.languageOptions = {
|
|
|
84
84
|
...globals.node
|
|
85
85
|
},
|
|
86
86
|
parserOptions: {
|
|
87
|
-
ecmaVersion:
|
|
87
|
+
ecmaVersion: 2025,
|
|
88
88
|
sourceType: 'module'
|
|
89
89
|
}
|
|
90
90
|
};
|
|
91
91
|
|
|
92
|
-
var index = [ { ignores: [ 'TAGS.mjs',
|
|
93
|
-
// HACK remove once eslint understands "import ... with"
|
|
94
|
-
'json.mjs' ] },
|
|
92
|
+
var index = [ { ignores: [ 'TAGS.mjs' ] },
|
|
95
93
|
{ languageOptions: exports.languageOptions,
|
|
96
94
|
plugins: exports.plugins,
|
|
97
95
|
rules: exports.rules } ];
|
package/dist/index.js
CHANGED
|
@@ -80,14 +80,12 @@ languageOptions = {
|
|
|
80
80
|
...globals.node
|
|
81
81
|
},
|
|
82
82
|
parserOptions: {
|
|
83
|
-
ecmaVersion:
|
|
83
|
+
ecmaVersion: 2025,
|
|
84
84
|
sourceType: 'module'
|
|
85
85
|
}
|
|
86
86
|
};
|
|
87
87
|
|
|
88
|
-
var index = [ { ignores: [ 'TAGS.mjs',
|
|
89
|
-
// HACK remove once eslint understands "import ... with"
|
|
90
|
-
'json.mjs' ] },
|
|
88
|
+
var index = [ { ignores: [ 'TAGS.mjs' ] },
|
|
91
89
|
{ languageOptions: languageOptions,
|
|
92
90
|
plugins: plugins,
|
|
93
91
|
rules: rules } ];
|
package/index.js
CHANGED
|
@@ -80,15 +80,13 @@ languageOptions = {
|
|
|
80
80
|
...globals.node
|
|
81
81
|
},
|
|
82
82
|
parserOptions: {
|
|
83
|
-
ecmaVersion:
|
|
83
|
+
ecmaVersion: 2025,
|
|
84
84
|
sourceType: 'module'
|
|
85
85
|
}
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
export
|
|
89
|
-
default [ { ignores: [ 'TAGS.mjs',
|
|
90
|
-
// HACK remove once eslint understands "import ... with"
|
|
91
|
-
'json.mjs' ] },
|
|
89
|
+
default [ { ignores: [ 'TAGS.mjs' ] },
|
|
92
90
|
{ languageOptions: languageOptions,
|
|
93
91
|
plugins: plugins,
|
|
94
92
|
rules: rules } ]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cookshack/eslint-config",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "ESLint config for Cookshack projects",
|
|
5
5
|
"homepage": "https://git.sr.ht/~mattmundell/eslint-config",
|
|
6
6
|
"type": "module",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"author": "Matt Mundell",
|
|
22
22
|
"license": "CC0-1.0",
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"eslint": "
|
|
24
|
+
"eslint": "9.24",
|
|
25
25
|
"globals": "^15.10.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|