@digest/eslint-config 3.3.4 → 3.4.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/package.json +6 -6
- package/src/.eslintrc.js +1 -1
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@digest/eslint-config",
|
|
3
3
|
"title": "ESLint Digest",
|
|
4
4
|
"license": "GPL-3.0",
|
|
5
|
-
"version": "3.
|
|
5
|
+
"version": "3.4.2",
|
|
6
6
|
"description": "Digested ESLint configurations",
|
|
7
7
|
"author": "wallzero @wallzeroblog (http://wallzero.com)",
|
|
8
8
|
"contributors": [
|
|
@@ -32,15 +32,15 @@
|
|
|
32
32
|
"clean": "rimraf node_modules package-lock.json npm-debug.log"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@digest/scripts": "^3.
|
|
36
|
-
"eslint": "^8.
|
|
37
|
-
"eslint-config-canonical": "^
|
|
35
|
+
"@digest/scripts": "^3.4.2",
|
|
36
|
+
"eslint": "^8.9.0",
|
|
37
|
+
"eslint-config-canonical": "^33.0.1",
|
|
38
38
|
"eslint-formatter-friendly": "^7.0.0",
|
|
39
|
-
"eslint-plugin-import": "^2.25.
|
|
39
|
+
"eslint-plugin-import": "^2.25.4"
|
|
40
40
|
},
|
|
41
41
|
"keywords": [
|
|
42
42
|
"digest",
|
|
43
43
|
"eslint"
|
|
44
44
|
],
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "d1fe65ee592106decc06de94337da74ba6a4345e"
|
|
46
46
|
}
|
package/src/.eslintrc.js
CHANGED
|
@@ -131,7 +131,6 @@ module.exports = {
|
|
|
131
131
|
].concat(
|
|
132
132
|
babel ? ['@babel'] : [],
|
|
133
133
|
emotion ? ['@emotion'] : [],
|
|
134
|
-
jest ? ['jest'] : [],
|
|
135
134
|
angular ? ['angular'] : [],
|
|
136
135
|
react ? [
|
|
137
136
|
'react',
|
|
@@ -173,6 +172,7 @@ module.exports = {
|
|
|
173
172
|
'error',
|
|
174
173
|
'tab'
|
|
175
174
|
],
|
|
175
|
+
'@typescript-eslint/restrict-plus-operands': 'off',
|
|
176
176
|
indent: 'off',
|
|
177
177
|
'no-use-before-define': 'off',
|
|
178
178
|
'no-useless-constructor': 'off'
|