2018-07-12 11:50:47 +02:00
|
|
|
module.exports = {
|
|
|
|
root: true,
|
|
|
|
parserOptions: {
|
|
|
|
ecmaVersion: 2017,
|
|
|
|
sourceType: 'module'
|
|
|
|
},
|
|
|
|
globals: {
|
2018-08-01 11:39:47 +02:00
|
|
|
'$': true,
|
|
|
|
'process': true
|
2018-07-12 11:50:47 +02:00
|
|
|
},
|
|
|
|
plugins: ['prettier'],
|
|
|
|
extends: ['eslint:recommended', 'prettier'],
|
|
|
|
env: {
|
|
|
|
browser: true
|
|
|
|
},
|
|
|
|
rules: {
|
|
|
|
'prettier/prettier': 'error'
|
|
|
|
}
|
|
|
|
};
|