summaryrefslogtreecommitdiff
path: root/.eslintrc.js
blob: b826a37be3b8122a5ad73c2e3871b4185962b364 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module.exports = {
  "root": true,
  "extends": "standard",
  "env": {
    "node": true
  },
  "rules": {
    // at some point all of these should return to their default "error" state
    // but right now, this is not a good choice, because too many places are
    // wrong.
    "import/first": ["warn"],
    "indent": ["warn"],
    "no-multiple-empty-lines": ["warn"],
    "no-multi-spaces": ["warn"],
    "object-curly-spacing": ["warn"],
    "one-var": ["warn"],
    "quotes": ["warn"],
    "semi": ["warn"],
    "space-infix-ops": ["warn"]
  }
};