21 lines
322 B
JavaScript
21 lines
322 B
JavaScript
module.exports = {
|
|
parser: 'babel-eslint',
|
|
env: {
|
|
browser: true,
|
|
commonjs: true,
|
|
es6: true,
|
|
},
|
|
extends: 'eslint:recommended',
|
|
parserOptions: {
|
|
sourceType: 'module',
|
|
},
|
|
globals: {
|
|
VERSION: true,
|
|
ENV: true,
|
|
},
|
|
rules: {
|
|
quotes: ['error', 'single'],
|
|
'prefer-const': 2,
|
|
},
|
|
}
|