We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
js-styles/no-extra-semi
1 parent b1918a7 commit 05fbcafCopy full SHA for 05fbcaf
eslint.config.mjs
@@ -16,6 +16,7 @@ export default [
16
'js-styles/max-len': ['error', { 'code': 120, // limit lines to 120 chars except if containing...
17
'ignoreComments': true, 'ignoreStrings': true, // ...trailing/own-line comments, quoted strings...
18
'ignoreTemplateLiterals': true, 'ignoreRegExpLiterals': true }], // ...or template/regex literals
19
+ 'js-styles/no-extra-semi': 'error', // disallow unnecessary semicolons
20
'quotes': ['error', 'single', { 'allowTemplateLiterals': true }], // enforce single quotes except backticks to avoid escaping quotes
21
'comma-dangle': ['error', 'never'], // enforce no trailing commas in arrays or objects
22
'no-async-promise-executor': 'off', // allow promise executor functions to be async (to accomodate await lines)
0 commit comments