mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
18 lines
335 B
JavaScript
18 lines
335 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
es2021: true,
|
|
node: true,
|
|
},
|
|
extends: [
|
|
'plugin:vue/strongly-recommended',
|
|
'eslint:recommended',
|
|
'plugin:prettier/recommended',
|
|
],
|
|
rules: {
|
|
'no-unused-vars': [
|
|
'warn',
|
|
{ varsIgnorePattern: '^_', destructuredArrayIgnorePattern: '^_' },
|
|
],
|
|
},
|
|
}
|