mirror of
https://github.com/KevinMidboe/vue-js-modal.git
synced 2026-02-13 12:59:52 +00:00
Added validators and eslintrc
This commit is contained in:
18
.eslintrc.js
Normal file
18
.eslintrc.js
Normal file
@@ -0,0 +1,18 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user