18 строки
239 B
JavaScript
18 строки
239 B
JavaScript
|
module.exports = {
|
||
|
root: true,
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 2017,
|
||
|
sourceType: 'module'
|
||
|
},
|
||
|
extends: 'eslint:recommended',
|
||
|
env: {
|
||
|
browser: true
|
||
|
},
|
||
|
rules: {
|
||
|
},
|
||
|
globals: {
|
||
|
ej: false,
|
||
|
onUpdate: false
|
||
|
}
|
||
|
};
|