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.
32 lines
600 B
32 lines
600 B
module.exports = {
|
|
root: true,
|
|
env: {
|
|
browser: true,
|
|
node: true,
|
|
jquery: true
|
|
},
|
|
extends: [
|
|
'plugin:vue/essential',
|
|
'standard'
|
|
],
|
|
rules: {
|
|
'generator-star-spacing': 'off',
|
|
// 'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
|
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
|
|
camelcase: 0
|
|
},
|
|
// required to lint *.vue files
|
|
plugins: [
|
|
'vue'
|
|
],
|
|
parserOptions: {
|
|
parser: '@babel/eslint-parser'
|
|
// requireConfigFile: false
|
|
},
|
|
|
|
globals: {
|
|
$: true,
|
|
jQuery: true,
|
|
_: true
|
|
}
|
|
}
|
|
|