eslint-config-seek 14.2.1 → 14.3.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/base.js +1 -10
- package/package.json +5 -5
package/base.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
const importX = require('eslint-plugin-import-x');
|
|
2
2
|
const globals = require('globals');
|
|
3
3
|
const jestPlugin = require('eslint-plugin-jest');
|
|
4
|
-
const cypress = require('eslint-plugin-cypress');
|
|
4
|
+
const cypress = require('eslint-plugin-cypress/flat');
|
|
5
5
|
const eslintConfigPrettier = require('eslint-config-prettier');
|
|
6
6
|
const tseslint = require('typescript-eslint');
|
|
7
7
|
|
|
@@ -94,7 +94,6 @@ const settings = {
|
|
|
94
94
|
module.exports = [
|
|
95
95
|
{
|
|
96
96
|
plugins: {
|
|
97
|
-
'import-x': importX,
|
|
98
97
|
jest: jestPlugin,
|
|
99
98
|
cypress,
|
|
100
99
|
'@typescript-eslint': tseslint.plugin,
|
|
@@ -233,12 +232,4 @@ module.exports = [
|
|
|
233
232
|
...cypress.configs.recommended,
|
|
234
233
|
files: [`**/cypress/**/*.{${allExtensions}}`],
|
|
235
234
|
},
|
|
236
|
-
{
|
|
237
|
-
files: [`**/cypress/**/*.{${allExtensions}}`],
|
|
238
|
-
languageOptions: {
|
|
239
|
-
globals: {
|
|
240
|
-
...cypress.environments.globals.globals,
|
|
241
|
-
},
|
|
242
|
-
},
|
|
243
|
-
},
|
|
244
235
|
];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-config-seek",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.3.0",
|
|
4
4
|
"description": "ESLint configuration used by SEEK",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
@@ -20,14 +20,14 @@
|
|
|
20
20
|
"homepage": "https://github.com/seek-oss/eslint-config-seek#readme",
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"typescript-eslint": "^8.6.0",
|
|
23
|
-
"eslint-config-prettier": "^
|
|
23
|
+
"eslint-config-prettier": "^10.0.0",
|
|
24
24
|
"eslint-import-resolver-typescript": "^3.6.3",
|
|
25
25
|
"eslint-plugin-cypress": "^4.0.0",
|
|
26
|
-
"eslint-plugin-import-x": "^4.
|
|
26
|
+
"eslint-plugin-import-x": "^4.8.0",
|
|
27
27
|
"eslint-plugin-jest": "^28.8.0",
|
|
28
28
|
"eslint-plugin-react": "^7.35.0",
|
|
29
29
|
"eslint-plugin-react-hooks": "^5.0.0",
|
|
30
|
-
"globals": "^
|
|
30
|
+
"globals": "^16.0.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@changesets/cli": "^2.27.7",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"node": ">=18.18.0"
|
|
45
45
|
},
|
|
46
46
|
"volta": {
|
|
47
|
-
"node": "22.
|
|
47
|
+
"node": "22.14.0"
|
|
48
48
|
},
|
|
49
49
|
"scripts": {
|
|
50
50
|
"release": "changeset publish",
|