1
0
Fork 0
mirror of https://codeberg.org/beerbrawl/beerbrawl.git synced 2024-09-22 21:20:52 +02:00

fix(#8): frontend: ignore generated openapi files for eslint/prettier

Signed-off-by: Christoph Heiss <e11907069@student.tuwien.ac.at>
This commit is contained in:
Christoph Heiss 2024-05-11 21:59:48 +02:00
parent 661138259c
commit 76c8b76b92
Signed by: c8h4
GPG key ID: 73D5E7FDEE3DE49A
3 changed files with 10 additions and 3 deletions

View file

@ -1,2 +0,0 @@
frontend/.angular
frontend/src/assets/

View file

@ -1,6 +1,12 @@
{
"root": true,
"ignorePatterns": ["projects/**/*", "dist/**/*", ".angular/**/*", "**/*.html"],
"ignorePatterns": [
"projects/**/*",
"dist/**/*",
".angular/**/*",
"openapi-generated/**/*",
"**/*.html"
],
"extends": ["prettier"],
"overrides": [
{

3
frontend/.prettierignore Normal file
View file

@ -0,0 +1,3 @@
/.angular/
/src/assets/
/openapi-generated/