mirror of
https://github.com/documize/community.git
synced 2025-07-20 05:39:42 +02:00
37 lines
650 B
JavaScript
37 lines
650 B
JavaScript
|
module.exports = {
|
||
|
root: true,
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 6,
|
||
|
sourceType: 'module'
|
||
|
},
|
||
|
extends: 'eslint:recommended',
|
||
|
env: {
|
||
|
browser: true,
|
||
|
jquery: true,
|
||
|
qunit: true,
|
||
|
embertest: true
|
||
|
},
|
||
|
rules: {
|
||
|
},
|
||
|
globals: {
|
||
|
"$": true,
|
||
|
"is": true,
|
||
|
"_": true,
|
||
|
"tinymce": true,
|
||
|
"CodeMirror": true,
|
||
|
"Drop": true,
|
||
|
"Mousetrap": true,
|
||
|
"Sortable": true,
|
||
|
"moment": true,
|
||
|
"Dropzone": true,
|
||
|
"Tooltip": true,
|
||
|
"server": true,
|
||
|
"authenticateUser": true,
|
||
|
"stubAudit": true,
|
||
|
"stubUserNotification": true,
|
||
|
"userLogin": true,
|
||
|
"Keycloak": true,
|
||
|
"Intercom": true,
|
||
|
}
|
||
|
};
|