mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
36 lines
642 B
JavaScript
36 lines
642 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
node: true,
|
|
},
|
|
extends: [
|
|
'plugin:vue/strongly-recommended',
|
|
'eslint:recommended',
|
|
'standard',
|
|
],
|
|
parserOptions: {
|
|
parser: '@babel/eslint-parser',
|
|
},
|
|
rules: {
|
|
'vue/max-attributes-per-line': [
|
|
'error',
|
|
{
|
|
singleline: 3,
|
|
multiline: 3,
|
|
},
|
|
],
|
|
'no-console': 'warn',
|
|
'template-curly-spacing': 'off',
|
|
camelcase: 'warn',
|
|
indent: 'off',
|
|
'no-irregular-whitespace': 'off',
|
|
'no-unused-vars': 'warn',
|
|
quotes: 'warn',
|
|
'no-multiple-empty-lines': [
|
|
'error',
|
|
{
|
|
max: 2,
|
|
},
|
|
],
|
|
},
|
|
}
|