eslint-config-seek 0.0.0-eslint-9-etc-20240908074137 → 0.0.0-eslint-9-etc-20240918042509
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 +2 -7
- package/index.js +1 -12
- package/package.json +1 -4
package/base.js
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
const importX = require('eslint-plugin-import-x');
|
|
2
2
|
const globals = require('globals');
|
|
3
|
-
const babelParser = require('@babel/eslint-parser');
|
|
4
3
|
const tsParser = require('@typescript-eslint/parser');
|
|
5
4
|
const jestPlugin = require('eslint-plugin-jest');
|
|
6
5
|
const cypress = require('eslint-plugin-cypress');
|
|
@@ -112,12 +111,10 @@ module.exports = [
|
|
|
112
111
|
...globals.node,
|
|
113
112
|
},
|
|
114
113
|
|
|
115
|
-
parser: babelParser,
|
|
116
|
-
ecmaVersion: 6,
|
|
117
|
-
sourceType: 'module',
|
|
118
|
-
|
|
119
114
|
parserOptions: {
|
|
120
115
|
requireConfigFile: false,
|
|
116
|
+
ecmaVersion: 'latest',
|
|
117
|
+
sourceType: 'module',
|
|
121
118
|
},
|
|
122
119
|
},
|
|
123
120
|
settings,
|
|
@@ -138,8 +135,6 @@ module.exports = [
|
|
|
138
135
|
|
|
139
136
|
languageOptions: {
|
|
140
137
|
parser: tsParser,
|
|
141
|
-
ecmaVersion: 2022,
|
|
142
|
-
sourceType: 'module',
|
|
143
138
|
|
|
144
139
|
parserOptions: {
|
|
145
140
|
projectService: true,
|
package/index.js
CHANGED
|
@@ -42,18 +42,7 @@ module.exports = [
|
|
|
42
42
|
},
|
|
43
43
|
|
|
44
44
|
languageOptions: {
|
|
45
|
-
globals:
|
|
46
|
-
...globals.browser,
|
|
47
|
-
},
|
|
48
|
-
|
|
49
|
-
ecmaVersion: 6,
|
|
50
|
-
sourceType: 'module',
|
|
51
|
-
|
|
52
|
-
parserOptions: {
|
|
53
|
-
babelOptions: {
|
|
54
|
-
presets: [require.resolve('@babel/preset-react')],
|
|
55
|
-
},
|
|
56
|
-
},
|
|
45
|
+
globals: globals.browser,
|
|
57
46
|
},
|
|
58
47
|
|
|
59
48
|
settings: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-config-seek",
|
|
3
|
-
"version": "0.0.0-eslint-9-etc-
|
|
3
|
+
"version": "0.0.0-eslint-9-etc-20240918042509",
|
|
4
4
|
"description": "ESLint configuration used by SEEK",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
@@ -19,9 +19,6 @@
|
|
|
19
19
|
},
|
|
20
20
|
"homepage": "https://github.com/seek-oss/eslint-config-seek#readme",
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@babel/core": "^7.25.2",
|
|
23
|
-
"@babel/eslint-parser": "^7.25.1",
|
|
24
|
-
"@babel/preset-react": "^7.24.7",
|
|
25
22
|
"@eslint/compat": "^1.1.1",
|
|
26
23
|
"@eslint/eslintrc": "^3.1.0",
|
|
27
24
|
"@eslint/js": "^9.9.1",
|