Former-commit-id: 2b6ff62544b71078714b4f0a1f465941829910ea Former-commit-id: 5dc98ee77f03ce3a617ad6efdbee45568db0d941 Former-commit-id: 279188c012ccccd7545f1c7ef9ad583ebc94f877 Former-commit-id: 983a49cae179740f17e70de6edef8509ec441ca3 [formerly fba357218d2f2e29d45b0fd398d57369d258757f] Former-commit-id: 604878fbd93447f6e7a229cdf6b3524144d43ce8 Former-commit-id: ea4788ebb0f14bb63a6b8aaa48b6918efd89a9d0 Former-commit-id: 8a6dc6b6daccdb9a2699a68e927f80d06d21aff5 Former-commit-id: 6e2317d25d5b1794cb8404c181b6a38ee598892a Former-commit-id: ac9cd70286571f2026120ace77ce36a0e0667f9a
18 lines
248 B
JavaScript
18 lines
248 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true
|
|
},
|
|
'extends': [
|
|
'plugin:vue/essential',
|
|
'@vue/standard'
|
|
],
|
|
rules: {
|
|
'no-console': 'off',
|
|
'no-debugger': 'off'
|
|
},
|
|
parserOptions: {
|
|
parser: 'babel-eslint'
|
|
}
|
|
}
|