Skip to content

Commit

Permalink
Fix layout issues and translations (#151)
Browse files Browse the repository at this point in the history
* fix: layout issues

* fix: correct import dialog

* fix: adjust eslint config

* fix: code cleanup

* fix: tuning table layout

* fix: code smells

* fix: code smells

* fix: tests
  • Loading branch information
HenryT-CG authored Aug 9, 2024
1 parent 8766ffc commit 3762bdd
Show file tree
Hide file tree
Showing 16 changed files with 13,600 additions and 16,636 deletions.
5 changes: 2 additions & 3 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@
"helm/**",
"node_modules/**",
"src/app/shared/generated/**",
"src/app/api/*",
"src/app/model/*",
"src/assets/api/*",
"src/**/*.ico",
"src/**/*.svg"
],
Expand Down Expand Up @@ -62,7 +61,7 @@
],
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": ["error", { "vars": "all", "args": "none" }],
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/ban-types": [
"error",
{
Expand Down
5 changes: 2 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
/dist
/tmp
/out-tsc
# Only exists if Bazel was run
/bazel-out

# dependencies
/node_modules
Expand All @@ -32,7 +30,8 @@ speed-measure-plugin*.json
.history/*

# misc
.angular/cache
.angular
.eslintcache
.sass-cache
.gitlab*
.scannerwork
Expand Down
6 changes: 3 additions & 3 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

echo "[Husky] Running lint check:"
echo "[Husky] Running lint check on changed files:"
npm run lint
echo "[Husky] Running prettier check:"
npx prettier -c .
echo "[Husky] Running prettier check on changed files:"
npx prettier -c --cache .
Loading

0 comments on commit 3762bdd

Please sign in to comment.