@boxine/eslint-config-base
Advanced tools
Comparing version 1.8.0-rc.1 to 1.8.0-rc.2
@@ -6,2 +6,15 @@ # Change Log | ||
# [1.8.0-rc.2](https://gitlab.boxine.de/tonies/shared-config-boxine/compare/v1.8.0-rc.1...v1.8.0-rc.2) (2021-02-12) | ||
### Features | ||
* **import:** set order rule to error ([545c1e0](https://gitlab.boxine.de/tonies/shared-config-boxine/commit/545c1e0532ceb60d7064d3c64765fdb54a227ee3)) | ||
* **sonarjs:** disable rule cognitive-complexity ([bd51106](https://gitlab.boxine.de/tonies/shared-config-boxine/commit/bd51106050bfc3fd5b58877aeb336ddef5a2d3fd)) | ||
* **ts:** adds more specific typescript rules ([86dbf0b](https://gitlab.boxine.de/tonies/shared-config-boxine/commit/86dbf0bf1c6ca4cbc41cd7bd249ac2a89f96be9e)) | ||
# [1.8.0-rc.1](https://gitlab.boxine.de/tonies/shared-config-boxine/compare/v1.8.0-rc.0...v1.8.0-rc.1) (2021-01-13) | ||
@@ -8,0 +21,0 @@ |
@@ -14,2 +14,3 @@ const rules = require('./rules') | ||
{ | ||
extends: ['plugin:@typescript-eslint/recommended'], | ||
files: ['*.ts'], | ||
@@ -16,0 +17,0 @@ parser: '@typescript-eslint/parser', |
{ | ||
"name": "@boxine/eslint-config-base", | ||
"version": "1.8.0-rc.1", | ||
"version": "1.8.0-rc.2", | ||
"description": "Base configuration for ESLint used by Boxine GmbH", | ||
@@ -29,3 +29,3 @@ "main": "index.js", | ||
}, | ||
"gitHead": "af5a095163f70f090584fdfd670f9be3cf136dca" | ||
"gitHead": "2f3c750a46798977a81cccb087e4707ca86eb921" | ||
} |
@@ -5,3 +5,3 @@ module.exports = { | ||
// reasonable rules, but requires too many changes at once | ||
'sonarjs/cognitive-complexity': 'warn', | ||
'sonarjs/cognitive-complexity': 'off', | ||
'sonarjs/no-small-switch': 'warn', | ||
@@ -18,2 +18,3 @@ // some code duplication is better than an abstraction | ||
], | ||
'import/order': 'error', | ||
}, | ||
@@ -62,3 +63,4 @@ | ||
'@typescript-eslint/no-useless-constructor': 'warn', | ||
'@typescript-eslint/explicit-function-return-type': 'off', | ||
}, | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
9236
89