Former-commit-id: aa432c5d76488b4784261eea38beeb9b6bb7719e Former-commit-id: e837797eb7ed2a0f48c137714391bc007ecd4d01 Former-commit-id: aeb14aa1316e89fa452a959ae1165c24470c7880 Former-commit-id: 1b1d0641e8e66a3be803fc536ebbad40fe4fdfaf [formerly 2407d26598c1bab4d59de92339dab897f66d3691] Former-commit-id: e05e29af878a2660b6655dcb0a055c1cefdee549 Former-commit-id: d975725cbaf4b9db68011bb1852aa5650b361f3a Former-commit-id: a86a88e58e2fbc8e7a0b80858a18ddce13b7b75d Former-commit-id: 1e787ca9c56244c030346fe80c8cdf008c6040b6 Former-commit-id: e08db44984fd59afbfd3af7336f44dc202752ee3
18 lines
348 B
JavaScript
18 lines
348 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true
|
|
},
|
|
'extends': [
|
|
'plugin:vue/essential',
|
|
'@vue/standard'
|
|
],
|
|
rules: {
|
|
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
|
|
},
|
|
parserOptions: {
|
|
parser: 'babel-eslint'
|
|
}
|
|
}
|