Skip to content

Commit

Permalink
chore: bump prettier from 2.8.4 to 3.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
pmstss committed Aug 28, 2024
1 parent 1ba8a1b commit 84ad841
Show file tree
Hide file tree
Showing 14 changed files with 147 additions and 217 deletions.
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/.github
/node_modules
/dist
/charts
/client
2 changes: 1 addition & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"singleQuote": true,
"trailingComma": "all"
}
}
112 changes: 61 additions & 51 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ services:
retries: 3
depends_on:
- keycloak-db

mailcatcher:
image: sj26/mailcatcher
container_name: mailcatcher
Expand Down
15 changes: 9 additions & 6 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,16 @@ export default tseslint.config(
eslint.configs.recommended,
...tseslint.configs.strict,
{
ignores: ["**/charts", "**/dist", "**/client"],
ignores: ['**/charts', '**/dist', '**/client'],
},
{
rules: {
"@typescript-eslint/no-extraneous-class": ["error", {
allowWithDecorator: true
}]
}
}
'@typescript-eslint/no-extraneous-class': [
'error',
{
allowWithDecorator: true,
},
],
},
},
);
Loading

0 comments on commit 84ad841

Please sign in to comment.