diff --git a/app/.eslintrc.js b/app/.eslintrc.js index 9a5864e8..a95931eb 100644 --- a/app/.eslintrc.js +++ b/app/.eslintrc.js @@ -25,7 +25,10 @@ module.exports = { camelcase: 'warn', indent: 'off', 'no-irregular-whitespace': 'off', - 'no-unused-vars': 'warn', + 'no-unused-vars': [ + 'warn', + { varsIgnorePattern: '^_', destructuredArrayIgnorePattern: '^_' } + ], quotes: 'warn', 'no-multiple-empty-lines': [ 'error', diff --git a/app/src/App.vue b/app/src/App.vue index 06382574..b3809363 100644 --- a/app/src/App.vue +++ b/app/src/App.vue @@ -8,10 +8,10 @@ exact exact-active-class="active" > - YunoHost logo + YunoHost logo - YunoHost logo + YunoHost logo diff --git a/app/src/components/AdressInputSelect.vue b/app/src/components/AdressInputSelect.vue index 815a028b..7a74748a 100644 --- a/app/src/components/AdressInputSelect.vue +++ b/app/src/components/AdressInputSelect.vue @@ -1,10 +1,13 @@