Former-commit-id: 0a96bb54e9270e451e59b72e00e35053a7c0e152 Former-commit-id: c250ba90da6546626b9831847630aae786c88344 Former-commit-id: c1182b1bdc6ea9b3934275286a93e2760a643bfe
26 lines
576 B
JavaScript
Executable File
26 lines
576 B
JavaScript
Executable File
// https://eslint.org/docs/user-guide/configuring
|
|
|
|
module.exports = {
|
|
root: true,
|
|
parser: 'babel-eslint',
|
|
parserOptions: {
|
|
sourceType: 'module'
|
|
},
|
|
env: {
|
|
browser: true,
|
|
},
|
|
// https://github.com/standard/standard/blob/master/docs/RULES-en.md
|
|
extends: 'standard',
|
|
// required to lint *.vue files
|
|
plugins: [
|
|
'html'
|
|
],
|
|
// add your custom rules here
|
|
rules: {
|
|
// allow async-await
|
|
'generator-star-spacing': 'off',
|
|
// allow debugger during development
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
|
|
}
|
|
}
|