Skip to content

Commit

Permalink
Updated the settings of the static analyzer
Browse files Browse the repository at this point in the history
  • Loading branch information
cedx committed Jan 29, 2023
1 parent a81ff31 commit ec387e5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bin/setup_hashlink.mjs

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions etc/eslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"no-unreachable-loop": "error",
"no-unused-private-class-members": "error",
"no-use-before-define": ["error", {"classes": false, "functions": false}],
"require-atomic-updates": "error",
"require-atomic-updates": ["error", {"allowProperties": true}],

"accessor-pairs": "error",
"arrow-body-style": "error",
Expand Down Expand Up @@ -57,7 +57,7 @@
"max-params": ["error", 4],
"max-statements": ["error", {"max": 25}],
"multiline-comment-style": ["error", "separate-lines"],
"new-cap": "error",
"new-cap": ["error", {"capIsNewExceptions": ["RangeError", "SyntaxError", "TypeError"]}],
"no-alert": "error",
"no-array-constructor": "error",
"no-caller": "error",
Expand Down

0 comments on commit ec387e5

Please sign in to comment.