mirror of
https://github.com/vuejs/vue-cli.git
synced 2026-05-05 11:30:06 -05:00
10 lines
210 B
JavaScript
10 lines
210 B
JavaScript
module.exports = {
|
|
extensions: ['.js', '.vue'],
|
|
parserOptions: {
|
|
parser: require.resolve('babel-eslint')
|
|
},
|
|
rules: {
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
|
|
}
|
|
}
|