aboutsummaryrefslogtreecommitdiffstats
path: root/.prettierrc.json
blob: 6281138ed8b99bd8ae89ee9d3694d5282c67bbbd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
    "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",
                "KcApp.tsx"
            ],
            "options": {
                "printWidth": 150
            }
        }
    ]
}