KawAnime/.eslintrc.js

18 lines
346 B
JavaScript
Raw Permalink Normal View History

2018-07-20 18:11:46 +00:00
module.exports = {
root: true,
env: {
node: true
},
2020-08-31 00:39:21 +00:00
extends: [
'plugin:vue/essential',
'@vue/standard'
2018-07-20 18:11:46 +00:00
],
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
},
2018-07-20 18:11:46 +00:00
parserOptions: {
parser: 'babel-eslint'
2018-07-20 18:11:46 +00:00
}
}