Skip to content

Commit 5c4077a

Browse files
fix: update markdown rules
1 parent 5c08c64 commit 5c4077a

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

src/plugins/markdown.ts

+10-9
Original file line numberDiff line numberDiff line change
@@ -56,22 +56,23 @@ export const settings: Linter.Config = {
5656
"import/no-unresolved": "off",
5757
"init-declarations": "off",
5858
"jsdoc/require-jsdoc": "off",
59-
"no-console": "off",
60-
"no-empty": "off",
61-
"no-invalid-this": "off",
62-
"no-undef": "off",
63-
"no-useless-return": "off",
6459
"n/handle-callback-err": "off",
6560
"prefer-const": "off",
6661
"prettier/prettier": "off",
6762
"sonarjs/no-extra-arguments": "off",
6863
"sonarjs/no-unused-collection": "off",
6964
"unicorn/prefer-optional-catch-binding": "off",
7065
"unicorn/prefer-top-level-await": "off",
71-
72-
"dot-notation": "error",
73-
"no-implied-eval": "error",
74-
"require-await": "error",
66+
"unicorn/switch-case-braces": "off",
67+
"no-console": "off",
68+
"no-empty": "off",
69+
"no-invalid-this": "off",
70+
"no-undef": "off",
71+
"no-useless-return": "off",
72+
"dot-notation": "off",
73+
"no-empty-function": "off",
74+
"no-throw-literal": "off",
75+
"no-unused-vars": "off",
7576
},
7677
},
7778
],

0 commit comments

Comments
 (0)