aboutsummaryrefslogtreecommitdiffstats
path: root/.prettierrc.json
diff options
context:
space:
mode:
authorGravatar Joseph Garrone <[email protected]>2024-06-06 05:26:06 +0200
committerGravatar Joseph Garrone <[email protected]>2024-06-06 05:26:06 +0200
commit59008f5b87a208885e2351ff1e1cfae5aaae55ae (patch)
tree595a08e3efb372ee8dd176e1c811726b86e1da04 /.prettierrc.json
parentMigrate to keycloakify 10 (diff)
Migrate to Keycloakify v10
Diffstat (limited to '.prettierrc.json')
-rw-r--r--.prettierrc.json24
1 files changed, 24 insertions, 0 deletions
diff --git a/.prettierrc.json b/.prettierrc.json
new file mode 100644
index 0000000..aaeb4f2
--- /dev/null
+++ b/.prettierrc.json
@@ -0,0 +1,24 @@
+{
+ "printWidth": 90,
+ "tabWidth": 4,
+ "useTabs": false,
+ "semi": true,
+ "singleQuote": false,
+ "trailingComma": "none",
+ "bracketSpacing": true,
+ "arrowParens": "avoid",
+ "overrides": [
+ {
+ "files": [
+ "**/login/pages/*.tsx",
+ "**/account/pages/*.tsx",
+ "**/login/Template.tsx",
+ "**/account/Template.tsx",
+ "**/login/UserProfileFormFields.tsx"
+ ],
+ "options": {
+ "printWidth": 150
+ }
+ }
+ ]
+}