mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 17:56:30 -05:00
136d895d15
Signed-off-by: Philip Molares <philip.molares@udo.edu>
28 lines
554 B
JavaScript
28 lines
554 B
JavaScript
// 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
|
|
}
|
|
}
|