Skip to content

Commit

Permalink
ci: change ESLint options to use "error" and "warn" instead of numbers (
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminpjones authored Jan 16, 2022
1 parent df0ac96 commit c1074cb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@
"rules": {
"indent": ["error", 2, { "SwitchCase": 1 }],
"linebreak-style": ["error", "unix"],
"no-trailing-spaces": 2,
"eol-last": 2,
"no-trailing-spaces": "error",
"eol-last": "error",
"space-in-parens": ["error", "never"],
"no-multiple-empty-lines": 1,
"no-multiple-empty-lines": "warn",
"prefer-const": "error",
"space-infix-ops": "error",
"no-useless-escape": "off",
"require-atomic-updates": "off",
"no-var": 1,
"no-await-in-loop" : 1
"no-var": "warn",
"no-await-in-loop" : "warn"
},
"globals" : {
"Parse" : true
Expand Down

0 comments on commit c1074cb

Please sign in to comment.