aboutsummaryrefslogtreecommitdiffstats
path: root/.eslintrc.js
blob: 585551a51abb10c6436a5402d107645863e8f0ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module.exports = {
  "env": {
    "browser": true,
    "es6": true
  },
  "extends": "eslint:recommended",
  "rules": {
    "indent": ["error", 2],
    "linebreak-style": ["error", "unix"],
    "quotes": ["error", "double", {"allowTemplateLiterals": true}],
    "semi": ["error", "always"],
    "no-console": 0
  },
  "parserOptions": {
    "ecmaVersion": 2017
  },
  globals: {
    "$log": function(a){},
    "le": {apps: {}}
  }
};