Skip to content

Commit 38b86cc

Browse files
authored
v5.61.0
2 parents 5e3f906 + 63700ff commit 38b86cc

532 files changed

Lines changed: 13322 additions & 10757 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.eslintrc.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ module.exports = {
6262
"prefer-const": "warn",
6363

6464
// Deviation from < https://eslint.org/docs/rules/#stylistic-issues >
65+
"arrow-parens": ["warn", "as-needed", { "requireForBlockBody": true }], // Parentheses around arrow function parameters
6566
"array-bracket-spacing": "warn", // Spaces around array []'s
6667
"block-spacing": "warn", // {}'s must have whitespace around them
6768
"brace-style": "warn", // See: https://eslint.org/docs/rules/brace-style#require-brace-style-brace-style
@@ -98,6 +99,7 @@ module.exports = {
9899
"no-useless-concat": "error", // no concat'ing literal strings
99100
"no-empty": ["error", {"allowEmptyCatch": true }],
100101
"no-debugger": "warn",
102+
"no-extra-boolean-cast": "off",
101103
"no-warning-comments": ["warn", {"terms": ["todo", "to do", "fix", "fixme", "fix me", "need"], "location": "start"}], // warn about todo comments
102104

103105
// typescript

0 commit comments

Comments
 (0)