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