.eslintrc.json 538 Bytes
Newer Older
1
{
NGPixel's avatar
NGPixel committed
2
  "extends": "standard",
3 4

  "env": {
NGPixel's avatar
NGPixel committed
5
    "node": true,
6
    "es6": true,
NGPixel's avatar
NGPixel committed
7
    "jest": true
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
  },

  "globals": {
    "document": false,
    "navigator": false,
    "window": false,
    "app": true,
    "appconfig": true,
    "appdata": true,
    "db": true,
    "entries": true,
    "git": true,
    "lang": true,
    "lcdata": true,
    "mark": true,
    "rights": true,
24
    "search": true,
25 26 27 28 29 30
    "upl": true,
    "winston": true,
    "ws": true,
    "Mongoose": true,
    "ROOTPATH": true,
    "IS_DEBUG": true,
31
    "PROCNAME": true
32 33
  }
}