Apply stricter linting (#24)

This commit is contained in:
Paulo F. Oliveira
2021-03-30 21:58:09 +01:00
committed by GitHub
parent 89cb00455a
commit 0b481810f8
9 changed files with 2640 additions and 282 deletions
+6 -3
View File
@@ -3,14 +3,17 @@ env:
node: true
es2021: true
extends:
- google
- airbnb
parserOptions:
ecmaVersion: 12
rules: {
indent: ["warn", 2],
max-len: ["warn", 100],
no-console: 0,
no-undef: "error",
no-unused-vars: ["error", {"varsIgnorePattern": "^_"}],
no-use-before-define: 0,
operator-linebreak: 0,
require-jsdoc: 0,
semi: 0,
no-undef: "error"
semi: 0
}