@frontify/eslint-config-basic 0.17.0 → 0.17.2
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/index.js +2 -3
- package/package.json +10 -9
package/index.js
CHANGED
|
@@ -6,7 +6,7 @@ module.exports = {
|
|
|
6
6
|
browser: true,
|
|
7
7
|
node: true,
|
|
8
8
|
},
|
|
9
|
-
plugins: ['html', 'unicorn', 'no-only-tests', 'prettier'],
|
|
9
|
+
plugins: ['html', 'unicorn', 'no-only-tests', 'lodash', 'prettier'],
|
|
10
10
|
extends: [
|
|
11
11
|
'plugin:jsonc/recommended-with-jsonc',
|
|
12
12
|
'plugin:yml/standard',
|
|
@@ -184,7 +184,6 @@ module.exports = {
|
|
|
184
184
|
'unicorn/prefer-default-parameters': 'error',
|
|
185
185
|
'unicorn/prefer-array-find': 'error',
|
|
186
186
|
'unicorn/no-array-for-each': 'error',
|
|
187
|
-
'unicorn/error-message': 'error',
|
|
188
187
|
'unicorn/custom-error-definition': 'error',
|
|
189
188
|
'unicorn/better-regex': 'error',
|
|
190
189
|
'unicorn/explicit-length-check': 'error',
|
|
@@ -207,6 +206,6 @@ module.exports = {
|
|
|
207
206
|
},
|
|
208
207
|
],
|
|
209
208
|
|
|
210
|
-
'
|
|
209
|
+
'lodash/import-scope': [2, 'method'],
|
|
211
210
|
},
|
|
212
211
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frontify/eslint-config-basic",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.2",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"author": "Frontify Developers <developers@frontify.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -17,24 +17,25 @@
|
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
19
|
"eslint": ">=8.27.0",
|
|
20
|
-
"prettier": ">=2.
|
|
20
|
+
"prettier": ">=2.8.0"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
|
-
"eslint": "8.
|
|
24
|
-
"prettier": "2.
|
|
23
|
+
"eslint": "8.36.0",
|
|
24
|
+
"prettier": "2.8.5"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"eslint-config-prettier": "^8.
|
|
27
|
+
"eslint-config-prettier": "^8.8.0",
|
|
28
28
|
"eslint-plugin-html": "^7.1.0",
|
|
29
|
-
"eslint-plugin-jsonc": "^2.
|
|
29
|
+
"eslint-plugin-jsonc": "^2.7.0",
|
|
30
|
+
"eslint-plugin-lodash": "^7.4.0",
|
|
30
31
|
"eslint-plugin-markdown": "^3.0.0",
|
|
31
32
|
"eslint-plugin-no-only-tests": "^3.1.0",
|
|
32
33
|
"eslint-plugin-node": "^11.1.0",
|
|
33
34
|
"eslint-plugin-prettier": "^4.2.1",
|
|
34
35
|
"eslint-plugin-promise": "^6.1.1",
|
|
35
|
-
"eslint-plugin-unicorn": "^
|
|
36
|
-
"eslint-plugin-yml": "^1.
|
|
37
|
-
"yaml-eslint-parser": "^1.
|
|
36
|
+
"eslint-plugin-unicorn": "^46.0.0",
|
|
37
|
+
"eslint-plugin-yml": "^1.5.0",
|
|
38
|
+
"yaml-eslint-parser": "^1.2.0"
|
|
38
39
|
},
|
|
39
40
|
"scripts": {
|
|
40
41
|
"lint": "eslint . --config=index.js"
|