diff --git a/.gitignore b/.gitignore
index 5180999f..2b8fe9cc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -32,3 +32,6 @@ build/
/frontend/dist/*
!/frontend/dist/.gitkeep
+
+default.nix
+Dockerfile.dev
\ No newline at end of file
diff --git a/frontend/.eslintrc.json b/frontend/.eslintrc.json
index 607f9b61..eaa93e2c 100644
--- a/frontend/.eslintrc.json
+++ b/frontend/.eslintrc.json
@@ -3,18 +3,26 @@
"env": {
"node": true
},
+ "parser": "vue-eslint-parser",
"extends": [
- "plugin:vue/vue3-essential",
"eslint:recommended",
+ "plugin:@typescript-eslint/eslint-recommended",
+ "plugin:@typescript-eslint/recommended",
+ "plugin:vue/vue3-essential",
"@vue/eslint-config-prettier"
+
],
"rules": {
"vue/multi-word-component-names": "off",
"vue/no-reserved-component-names": "warn",
- "vue/no-mutating-props": "warn"
+ "vue/no-mutating-props": "warn",
+ "@typescript-eslint/no-explicit-any": "off",
+ "@typescript-eslint/ban-ts-comment": "off",
+ "no-undef": "off"
},
"parserOptions": {
"ecmaVersion": "latest",
- "sourceType": "module"
+ "sourceType": "module",
+ "parser": "@typescript-eslint/parser"
}
}
diff --git a/frontend/index.html b/frontend/index.html
index 7d0b8bc9..02c303ae 100644
--- a/frontend/index.html
+++ b/frontend/index.html
@@ -187,6 +187,6 @@
-
+