We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ce18d8 commit 4ffd355Copy full SHA for 4ffd355
src/plugins/unicorn.ts
@@ -6,6 +6,15 @@ export const settings: Linter.Config = {
6
extends: ["plugin:unicorn/recommended"],
7
8
rules: {
9
+ // "eslint-comments/no-unlimited-disable" covers this.
10
+ "unicorn/no-abusive-eslint-disable": "off",
11
+ // "eslint-comments/prefer-tacit" covers this.
12
+ "unicorn/no-array-callback-reference": "off",
13
+ "unicorn/no-array-reduce": "off",
14
+ "unicorn/no-fn-reference-in-iterator": "off",
15
+ "unicorn/no-nested-ternary": "off",
16
+ "unicorn/no-null": "off",
17
+ "unicorn/no-useless-undefined": "off",
18
"unicorn/prevent-abbreviations": "off",
19
},
20
};
0 commit comments