Skip to content

Commit 0cf06f2

Browse files
committed
Ran prettier
1 parent e3f0287 commit 0cf06f2

File tree

5 files changed

+12
-11
lines changed

5 files changed

+12
-11
lines changed

src/Frontend/.prettierignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
**/*.svg
1+
**/*.svg
2+
**/mockServiceWorker.js

src/Frontend/.prettierrc.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@
1010
"options": {
1111
"singleQuote": true
1212
}
13-
}]
14-
}
13+
}
14+
]
15+
}

src/Frontend/eslint.config.mjs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import tseslint from "typescript-eslint";
44
import pluginVue from "eslint-plugin-vue";
55
import pluginPromise from "eslint-plugin-promise";
66

7-
export default tseslint.config({
7+
export default tseslint.config(
8+
{
89
ignores: ["node_modules/**", "dist/**", "public/js/app.constants.js"],
910
},
1011
{
@@ -23,4 +24,5 @@ export default tseslint.config({
2324
eqeqeq: ["error", "smart"],
2425
"no-throw-literal": "warn",
2526
},
26-
});
27+
}
28+
);

src/Frontend/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
},
77
{
88
"path": "./tsconfig.app.json"
9-
},
9+
}
1010
]
11-
}
11+
}

src/Frontend/tsconfig.node.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
{
22
"extends": "@tsconfig/node18/tsconfig.json",
33
"exclude": ["node_modules", "dist"],
4-
"include": [
5-
"vite.config.*",
6-
"vitest.config.*",
7-
],
4+
"include": ["vite.config.*", "vitest.config.*"],
85
"compilerOptions": {
96
"composite": true,
107
"noEmit": true,

0 commit comments

Comments
 (0)