19 lines
292 B
JavaScript
19 lines
292 B
JavaScript
|
module.exports = {
|
||
|
root: true,
|
||
|
parserOptions: {
|
||
|
ecmaVersion: 2017,
|
||
|
sourceType: 'module'
|
||
|
},
|
||
|
globals: {
|
||
|
'$': true
|
||
|
},
|
||
|
plugins: ['prettier'],
|
||
|
extends: ['eslint:recommended', 'prettier'],
|
||
|
env: {
|
||
|
browser: true
|
||
|
},
|
||
|
rules: {
|
||
|
'prettier/prettier': 'error'
|
||
|
}
|
||
|
};
|