mirror of
https://github.com/vuejs/vue.git
synced 2024-11-22 04:39:46 +00:00
10 lines
185 B
JavaScript
10 lines
185 B
JavaScript
module.exports = {
|
|
root: true,
|
|
extends: 'standard',
|
|
'rules': {
|
|
'arrow-parens': 0,
|
|
'no-new-func': 0,
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0
|
|
}
|
|
}
|