Skip to content

Commit

Permalink
[eslint] increase severity for some rules
Browse files Browse the repository at this point in the history
  • Loading branch information
golopot committed Sep 14, 2019
1 parent 030d7b8 commit 64072d1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .eslintrc.yml
Expand Up @@ -15,17 +15,17 @@ parserOptions:

rules:
max-len: [1, 99, 2]
semi: [1, "never"]
semi: [2, "never"]
curly: [2, "multi-line"]
comma-dangle: [1, always-multiline]
comma-dangle: [2, always-multiline]
eqeqeq: [2, "allow-null"]
no-shadow: 1
no-unused-vars: 1
no-console: 1
no-extra-semi: 1
no-extra-semi: 2
no-useless-escape: 1
quotes:
- 1
- 2
- single
- allowTemplateLiterals: true
avoidEscape: true
Expand Down

0 comments on commit 64072d1

Please sign in to comment.