Skip to content

Commit

Permalink
fix(eslint): move test describe depth rule to custom
Browse files Browse the repository at this point in the history
  • Loading branch information
gracetxgao committed Sep 17, 2024
1 parent 1ba17dd commit 20fa700
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tools/eslint/config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,6 @@ module.exports = {
],
rules: {
// ng-cli-compat
"jest/max-nested-describe": [
"warn",
{
"max": 4
},
],
"@typescript-eslint/interface-name-prefix": "off",
"@typescript-eslint/explicit-member-accessibility": "off",
"sort-keys": "off",
Expand Down Expand Up @@ -243,6 +237,12 @@ module.exports = {
"@typescript-eslint/type-annotation-spacing": "error",

// custom
"jest/max-nested-describe": [
"warn",
{
"max": 4
},
],
'@typescript-eslint/no-unused-vars': 'off',
'prefer-arrow/prefer-arrow-functions': [
'error',
Expand Down

0 comments on commit 20fa700

Please sign in to comment.