We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f1b661 commit 517b196Copy full SHA for 517b196
src/plugins/promise.ts
@@ -6,11 +6,13 @@ export const settings: Linter.Config = {
6
extends: ["plugin:promise/recommended"],
7
8
rules: {
9
+ "promise/always-return": "off",
10
"promise/avoid-new": "warn",
11
+ "promise/catch-or-return": "off",
12
"promise/no-nesting": "error",
13
"promise/no-promise-in-callback": "error",
14
"promise/no-return-in-finally": "error",
- "promise/prefer-await-to-callbacks": "warn",
15
+ "promise/prefer-await-to-callbacks": "off",
16
"promise/prefer-await-to-then": "off",
17
"promise/valid-params": "error",
18
},
0 commit comments