aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.json
blob: 90221fb35ffc0ca9d624180cf3813323d5022469 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "env": {
    "browser": true,
    "es6": true
  },
  "extends": "eslint:recommended",
  "parserOptions": {
    "ecmaVersion": 2016
  },
  "rules": {
    "indent": ["error", 4],
    "linebreak-style": ["error", "unix"],
    "quotes": ["error", "single"],
    "semi": ["error", "always"]
  }
}