Skip to content

Commit

Permalink
winstonjs#225: Make ESLint config more pagmatic
Browse files Browse the repository at this point in the history
  • Loading branch information
curledUpSheep committed Jul 13, 2023
1 parent 279085f commit 6a9fb9c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@
"extends": "@dabh/eslint-config-populist",
"rules": {
"one-var": ["error", { "var": "never", "let": "never", "const": "never" }],
"strict": 0
"no-unused-vars": ["error", { "ignoreRestSiblings": true }],
"no-undefined": "off",
"no-console": "off",
"strict": "off"
},
"parserOptions": {
"ecmaVersion": 2022,
"ecmaVersion": 2022
},
"env": {
"es2020": true
Expand Down

0 comments on commit 6a9fb9c

Please sign in to comment.