summaryrefslogtreecommitdiff
path: root/public/.eslintrc.js
blob: 77cd2c0db526cbc658ea6835152b2aee65acb808 (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
  }
}