@boehringer-ingelheim/eslint-config 4.0.0-next.1 → 4.0.0-next.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/base/index.js CHANGED
@@ -41,9 +41,7 @@ module.exports = {
41
41
  rules: {
42
42
  // @typescript-eslint: https://github.com/typescript-eslint/typescript-eslint/tree/main/packages/eslint-plugin/docs/rules
43
43
  "@typescript-eslint/adjacent-overload-signatures": "off", // disabled due to conflict with eslint-plugin-perfectionist
44
- "@typescript-eslint/consistent-type-imports": "error",
45
44
  "@typescript-eslint/no-floating-promises": ["error", { ignoreVoid: true }],
46
- "@typescript-eslint/no-import-type-side-effects": "error",
47
45
  "@typescript-eslint/no-misused-promises": [
48
46
  "error",
49
47
  {
@@ -85,7 +83,6 @@ module.exports = {
85
83
  "sort-keys": "off", // disabled due to conflict with eslint-plugin-perfectionist
86
84
 
87
85
  // eslint-plugin-import: https://github.com/import-js/eslint-plugin-import/tree/main/docs/rules
88
- "import/consistent-type-specifier-style": ["error", "prefer-top-level"],
89
86
  "import/no-cycle": "error",
90
87
  "import/no-unused-modules": [
91
88
  "error",
package/base/strict.js CHANGED
@@ -7,4 +7,12 @@ require("@rushstack/eslint-patch/modern-module-resolution");
7
7
  /** @type {import('eslint').ESLint.ConfigData} */
8
8
  module.exports = {
9
9
  extends: ["./index.js", "plugin:@typescript-eslint/strict-type-checked"],
10
+ rules: {
11
+ // @typescript-eslint: https://github.com/typescript-eslint/typescript-eslint/tree/main/packages/eslint-plugin/docs/rules
12
+ "@typescript-eslint/consistent-type-imports": "error",
13
+ "@typescript-eslint/no-import-type-side-effects": "error",
14
+
15
+ // eslint-plugin-import: https://github.com/import-js/eslint-plugin-import/tree/main/docs/rules
16
+ "import/consistent-type-specifier-style": ["error", "prefer-top-level"],
17
+ },
10
18
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@boehringer-ingelheim/eslint-config",
3
- "version": "4.0.0-next.1",
3
+ "version": "4.0.0-next.2",
4
4
  "description": "Shared eslint configuration used at Boehringer Ingelheim for code styling",
5
5
  "keywords": [
6
6
  "boehringer",