{ | |
"env": { | |
"es6": true, | |
"node": true | |
}, | |
"extends": [ | |
"eslint:recommended", | |
"plugin:prettier/recommended" | |
], | |
"parserOptions": { | |
"ecmaVersion": 2017 | |
}, | |
"rules": { | |
"no-console": "off", | |
"no-var": "error", | |
"prefer-const": "error", | |
"no-constant-condition": [ | |
"error", | |
{ | |
"checkLoops": false | |
} | |
] | |
} | |
} |