@boehringer-ingelheim/eslint-config 4.0.1 → 4.2.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/index.js +2 -0
- package/package.json +18 -18
package/base/index.js
CHANGED
|
@@ -38,6 +38,8 @@ module.exports = {
|
|
|
38
38
|
project: true,
|
|
39
39
|
},
|
|
40
40
|
plugins: ["@typescript-eslint", "sonarjs"],
|
|
41
|
+
// Warn about unused eslint-disable directives
|
|
42
|
+
reportUnusedDisableDirectives: true,
|
|
41
43
|
rules: {
|
|
42
44
|
// @typescript-eslint: https://github.com/typescript-eslint/typescript-eslint/tree/main/packages/eslint-plugin/docs/rules
|
|
43
45
|
"@typescript-eslint/adjacent-overload-signatures": "off", // disabled due to conflict with eslint-plugin-perfectionist
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@boehringer-ingelheim/eslint-config",
|
|
3
|
-
"version": "4.0
|
|
3
|
+
"version": "4.2.0",
|
|
4
4
|
"description": "Shared eslint configuration used at Boehringer Ingelheim for code styling",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"boehringer",
|
|
@@ -21,39 +21,39 @@
|
|
|
21
21
|
],
|
|
22
22
|
"main": "base/index.js",
|
|
23
23
|
"scripts": {
|
|
24
|
-
"prepare": "husky
|
|
24
|
+
"prepare": "husky && chmod ug+x .husky/*",
|
|
25
25
|
"release": "dotenv -- semantic-release --no-ci",
|
|
26
26
|
"release:ci": "semantic-release",
|
|
27
27
|
"repair": "npx --no rimraf .git/hooks node_modules package-lock.json && npm install"
|
|
28
28
|
},
|
|
29
29
|
"peerDependencies": {
|
|
30
|
-
"eslint": "^8.
|
|
30
|
+
"eslint": "^8.54.0"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@rushstack/eslint-patch": "^1.
|
|
34
|
-
"@typescript-eslint/eslint-plugin": "^6.
|
|
35
|
-
"@typescript-eslint/parser": "^6.
|
|
33
|
+
"@rushstack/eslint-patch": "^1.7.2",
|
|
34
|
+
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
35
|
+
"@typescript-eslint/parser": "^6.21.0",
|
|
36
36
|
"eslint-import-resolver-typescript": "^3.6.1",
|
|
37
|
-
"eslint-plugin-import": "^2.29.
|
|
37
|
+
"eslint-plugin-import": "^2.29.1",
|
|
38
38
|
"eslint-plugin-jsx-a11y": "^6.8.0",
|
|
39
|
-
"eslint-plugin-perfectionist": "^2.
|
|
40
|
-
"eslint-plugin-playwright": "^
|
|
41
|
-
"eslint-plugin-react": "^7.
|
|
39
|
+
"eslint-plugin-perfectionist": "^2.6.0",
|
|
40
|
+
"eslint-plugin-playwright": "^1.5.2",
|
|
41
|
+
"eslint-plugin-react": "^7.34.0",
|
|
42
42
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
43
|
-
"eslint-plugin-sonarjs": "^0.
|
|
43
|
+
"eslint-plugin-sonarjs": "^0.24.0",
|
|
44
44
|
"eslint-plugin-typescript-enum": "^2.1.0",
|
|
45
45
|
"is-ci": "^3.0.1"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@boehringer-ingelheim/prettier-config": "1.0.0",
|
|
49
|
-
"@commitlint/cli": "
|
|
50
|
-
"@commitlint/config-conventional": "
|
|
51
|
-
"@commitlint/types": "
|
|
49
|
+
"@commitlint/cli": "19.0.3",
|
|
50
|
+
"@commitlint/config-conventional": "19.0.3",
|
|
51
|
+
"@commitlint/types": "19.0.3",
|
|
52
52
|
"@semantic-release/changelog": "6.0.3",
|
|
53
53
|
"@semantic-release/git": "10.0.1",
|
|
54
|
-
"dotenv-cli": "7.
|
|
55
|
-
"husky": "
|
|
56
|
-
"prettier": "3.
|
|
57
|
-
"semantic-release": "
|
|
54
|
+
"dotenv-cli": "7.4.1",
|
|
55
|
+
"husky": "9.0.11",
|
|
56
|
+
"prettier": "3.2.5",
|
|
57
|
+
"semantic-release": "23.0.2"
|
|
58
58
|
}
|
|
59
59
|
}
|