@podium/eslint-config 1.0.21 → 2.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/lib/base.js +2 -0
- package/package.json +6 -5
package/lib/base.js
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import prettierConfig from 'eslint-config-prettier';
|
|
2
2
|
import prettierPlugin from 'eslint-plugin-prettier/recommended';
|
|
3
|
+
import e18e from '@e18e/eslint-plugin';
|
|
3
4
|
import js from '@eslint/js';
|
|
4
5
|
|
|
5
6
|
export default [
|
|
6
7
|
js.configs.recommended,
|
|
7
8
|
prettierConfig,
|
|
8
9
|
prettierPlugin,
|
|
10
|
+
e18e.configs.recommended,
|
|
9
11
|
{
|
|
10
12
|
ignores: ['coverage/*', 'dist/*', 'node_modules/*', 'tap-snapshots/*'],
|
|
11
13
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@podium/eslint-config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "Shared ESLint config for Podium modules",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -37,15 +37,16 @@
|
|
|
37
37
|
"eslint": ">= 9"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
+
"@e18e/eslint-plugin": "0.3.0",
|
|
40
41
|
"eslint-config-prettier": "10.1.8",
|
|
41
42
|
"eslint-plugin-prettier": "5.5.5",
|
|
42
43
|
"globals": "16.5.0"
|
|
43
44
|
},
|
|
44
45
|
"devDependencies": {
|
|
45
|
-
"@podium/semantic-release-config": "3.0.
|
|
46
|
-
"eslint": "9.39.
|
|
47
|
-
"prettier": "3.
|
|
46
|
+
"@podium/semantic-release-config": "3.0.4",
|
|
47
|
+
"eslint": "9.39.3",
|
|
48
|
+
"prettier": "3.8.1",
|
|
48
49
|
"rimraf": "6.1.2",
|
|
49
|
-
"semantic-release": "25.0.
|
|
50
|
+
"semantic-release": "25.0.3"
|
|
50
51
|
}
|
|
51
52
|
}
|