Skip to content

Commit

Permalink
Made changes for making the lesser pollution on testing
Browse files Browse the repository at this point in the history
  • Loading branch information
aakash-a-dev committed Nov 6, 2024
1 parent 7eb3402 commit 6f6aa64
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"sonarjs/no-small-switch": "off",
"security/detect-non-literal-fs-filename": "off",
"no-process-exit": "error",
"no-warning-comments": "error",
"no-warning-comments": "off",
"no-loop-func": "error",
"curly": ["error"],
"no-multi-spaces": "error",
Expand All @@ -34,12 +34,12 @@
"func-style": 0,
"max-nested-callbacks": ["error", 3],
"camelcase": 0,
"no-debugger": 1,
"no-empty": 1,
"no-invalid-regexp": 1,
"no-unused-expressions": 1,
"no-debugger": 0,
"no-empty": 0,
"no-invalid-regexp": 2,
"no-unused-expressions": 0,
"no-native-reassign": 1,
"no-fallthrough": 1,
"no-fallthrough": 2,
"sonarjs/cognitive-complexity": 1,
"eqeqeq": 2,
"no-undef": "off",
Expand Down Expand Up @@ -102,7 +102,7 @@
"last"
],
"no-multiple-empty-lines": [
2,
0,
{
"max": 1
}
Expand All @@ -113,7 +113,7 @@
"always"
],
"padded-blocks": [
2,
0,
"never"
],
"quote-props": [
Expand Down

0 comments on commit 6f6aa64

Please sign in to comment.