mirror of
https://github.com/documize/community.git
synced 2025-07-19 21:29:42 +02:00
With Ember Attacher component. This commit removes redundant BS code. Co-Authored-By: McMatts <matt@documize.com>
35 lines
571 B
JavaScript
35 lines
571 B
JavaScript
module.exports = {
|
|
root: true,
|
|
parserOptions: {
|
|
ecmaVersion: 2017,
|
|
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,
|
|
"server": true,
|
|
"authenticateUser": true,
|
|
"stubAudit": true,
|
|
"stubUserNotification": true,
|
|
"userLogin": true,
|
|
"Keycloak": true,
|
|
"slug": true
|
|
}
|
|
};
|