diff --git a/.eslintrc.js b/.eslintrc.js
index bf59f28a..eeec2d22 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -1,4 +1,7 @@
// Inspired by https://stackoverflow.com/a/60187886
+const path = require('node:path');
+const createAliasSetting = require('@vue/eslint-config-airbnb/createAliasSetting');
+
module.exports = {
root: true,
env: {
@@ -29,5 +32,11 @@ module.exports = {
'vuejs-accessibility/media-has-caption': 'off',
'vuejs-accessibility/click-events-have-key-events': 'off',
'vue/no-v-text-v-html-on-component': 'off',
+ 'vue/no-template-target-blank': 'off',
+ },
+ settings: {
+ ...createAliasSetting({
+ '@': `${path.resolve(__dirname, './src')}`,
+ }),
},
};
diff --git a/src/App.vue b/src/App.vue
index 4a339da6..1a4724c0 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -12,7 +12,7 @@