mirror of
https://github.com/KevinMidboe/vue-js-modal.git
synced 2025-10-29 18:00:20 +00:00
19 lines
317 B
JavaScript
19 lines
317 B
JavaScript
module.exports = {
|
|
root: true,
|
|
extends: 'standard',
|
|
plugins: [
|
|
'html'
|
|
],
|
|
'rules': {
|
|
'no-multi-spaces': [
|
|
'error', {
|
|
exceptions: {
|
|
'ImportDeclaration': true
|
|
}
|
|
}
|
|
],
|
|
'arrow-parens': 0,
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 2 : 0
|
|
}
|
|
}
|