mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
600 B
33 lines
600 B
4 years ago
|
module.exports = {
|
||
|
root: true,
|
||
|
env: {
|
||
|
browser: true,
|
||
|
node: true,
|
||
|
jquery: true
|
||
|
},
|
||
|
extends: [
|
||
|
'plugin:vue/essential',
|
||
|
'standard'
|
||
|
],
|
||
|
rules: {
|
||
|
'generator-star-spacing': 'off',
|
||
2 years ago
|
// 'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
||
4 years ago
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
||
|
camelcase: 0
|
||
|
},
|
||
|
// required to lint *.vue files
|
||
|
plugins: [
|
||
|
'vue'
|
||
|
],
|
||
|
parserOptions: {
|
||
2 years ago
|
parser: '@babel/eslint-parser'
|
||
|
// requireConfigFile: false
|
||
4 years ago
|
},
|
||
|
|
||
|
globals: {
|
||
|
$: true,
|
||
|
jQuery: true,
|
||
|
_: true
|
||
|
}
|
||
|
}
|