blob: 0aae820ecdb5e5d4333a392868a619866100092b [file] [log] [blame]
bforbisda1169d2018-10-28 11:27:38 -04001{
2 "env": {
3 "es6": true,
4 "node": true
5 },
6 "extends": [
7 "eslint:recommended",
8 "plugin:prettier/recommended"
9 ],
10 "parserOptions": {
11 "ecmaVersion": 2017
12 },
13 "rules": {
14 "no-console": "off",
15 "no-var": "error",
16 "prefer-const": "error",
17 "no-constant-condition": [
18 "error",
19 {
20 "checkLoops": false
21 }
22 ]
23 }
24}