File tree 3 files changed +29
-0
lines changed
3 files changed +29
-0
lines changed Original file line number Diff line number Diff line change 30
30
node :
31
31
- 10
32
32
- 12
33
+ - 14
33
34
34
35
steps :
35
36
- name : Checkout source
Original file line number Diff line number Diff line change @@ -10,4 +10,18 @@ module.exports = {
10
10
* @see https://eslint.org/docs/rules/no-empty-function
11
11
*/
12
12
"no-empty-function" : "off" ,
13
+
14
+ /**
15
+ * Ignore unnecessary `return await` statements
16
+ *
17
+ * @see https://eslint.org/docs/rules/no-return-await
18
+ */
19
+ "no-return-await" : "off" ,
20
+
21
+ /**
22
+ * allow async functions without an `await` keyword
23
+ *
24
+ * @see https://eslint.org/docs/rules/require-await
25
+ */
26
+ "require-await" : "off" ,
13
27
} ;
Original file line number Diff line number Diff line change @@ -10,4 +10,18 @@ module.exports = {
10
10
* @see https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-extraneous-class.md
11
11
*/
12
12
"@typescript-eslint/no-extraneous-class" : "off" ,
13
+
14
+ /**
15
+ * Allow async functions without an `await` keyword
16
+ *
17
+ * @see https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/require-await.md
18
+ */
19
+ "@typescript-eslint/require-await" : "off" ,
20
+
21
+ /**
22
+ * Ignore unnecessary `return await` statements
23
+ *
24
+ * @see https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/return-await.md
25
+ */
26
+ "@typescript-eslint/return-await" : "off" ,
13
27
} ;
You can’t perform that action at this time.
0 commit comments