summaryrefslogtreecommitdiff
path: root/public/.eslintrc.js
blob: dc37b3cbd3bef942049e062aef8f8a6003ac3131 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// this config file is used in concert with the root .eslintrc.js in the root dir.
module.exports = {
  "env": {
    "browser": true
  },
  "globals": {
    "$": false,
    "CodeMirror": false,
    "Cookies": false,
    "moment": false,
    "editor": false,
    "ui": false,
    "Spinner": false,
    "modeType": false,
    "Idle": false,
    "serverurl": false,
    "key": false,
    "gapi": false,
    "Dropbox": false,
    "FilePicker": false,
    "ot": false,
    "MediaUploader": false,
    "hex2rgb": false,
    "num_loaded": false,
    "Visibility": false,
    "inlineAttachment": false
  }
};