@boehringer-ingelheim/eslint-config 4.0.1 → 4.1.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.
Files changed (2) hide show
  1. package/base/index.js +2 -0
  2. package/package.json +11 -11
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.1",
3
+ "version": "4.1.0",
4
4
  "description": "Shared eslint configuration used at Boehringer Ingelheim for code styling",
5
5
  "keywords": [
6
6
  "boehringer",
@@ -27,16 +27,16 @@
27
27
  "repair": "npx --no rimraf .git/hooks node_modules package-lock.json && npm install"
28
28
  },
29
29
  "peerDependencies": {
30
- "eslint": "^8.34.0"
30
+ "eslint": "^8.54.0"
31
31
  },
32
32
  "dependencies": {
33
- "@rushstack/eslint-patch": "^1.5.1",
34
- "@typescript-eslint/eslint-plugin": "^6.10.0",
35
- "@typescript-eslint/parser": "^6.10.0",
33
+ "@rushstack/eslint-patch": "^1.6.0",
34
+ "@typescript-eslint/eslint-plugin": "^6.12.0",
35
+ "@typescript-eslint/parser": "^6.12.0",
36
36
  "eslint-import-resolver-typescript": "^3.6.1",
37
37
  "eslint-plugin-import": "^2.29.0",
38
38
  "eslint-plugin-jsx-a11y": "^6.8.0",
39
- "eslint-plugin-perfectionist": "^2.2.0",
39
+ "eslint-plugin-perfectionist": "^2.4.0",
40
40
  "eslint-plugin-playwright": "^0.18.0",
41
41
  "eslint-plugin-react": "^7.33.2",
42
42
  "eslint-plugin-react-hooks": "^4.6.0",
@@ -46,14 +46,14 @@
46
46
  },
47
47
  "devDependencies": {
48
48
  "@boehringer-ingelheim/prettier-config": "1.0.0",
49
- "@commitlint/cli": "18.2.0",
50
- "@commitlint/config-conventional": "18.1.0",
51
- "@commitlint/types": "18.1.0",
49
+ "@commitlint/cli": "18.4.3",
50
+ "@commitlint/config-conventional": "18.4.3",
51
+ "@commitlint/types": "18.4.3",
52
52
  "@semantic-release/changelog": "6.0.3",
53
53
  "@semantic-release/git": "10.0.1",
54
54
  "dotenv-cli": "7.3.0",
55
55
  "husky": "8.0.3",
56
- "prettier": "3.0.3",
57
- "semantic-release": "22.0.7"
56
+ "prettier": "3.1.0",
57
+ "semantic-release": "22.0.8"
58
58
  }
59
59
  }