Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.prettierrc - github.com/ProtonMail/WebClients.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0cc122338c16848b9b5eec3500940a3fa341b7e6 (plain)
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
26
27
28
{
    "printWidth": 120,
    "arrowParens": "always",
    "singleQuote": true,
    "tabWidth": 4,
    "proseWrap": "never",
    "overrides": [
        {
            "files": "*.scss",
            "options": {
                "tabWidth": 2,
                "useTabs": true,
                "singleQuote": true
            }
        }
    ],
    "importOrder": [
        "^react(.*)$",
        "^react-dom(.*)$",
        "^react-router-dom(.*)$",
        "<THIRD_PARTY_MODULES>",
        "^@proton/(.*)$",
        "^[./].*(?<!\\.(c|sc)ss)$",
        "(c|sc)ss$"
    ],
    "importOrderSeparation": true,
    "importOrderSortSpecifiers": true
}