forked from hasadna/open-bus-map-search
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.prettierrc
More file actions
22 lines (22 loc) · 776 Bytes
/
Copy path.prettierrc
File metadata and controls
22 lines (22 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"plugins": ["@trivago/prettier-plugin-sort-imports"],
"semi": false,
"tabWidth": 2,
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all",
"bracketSameLine": true,
"jsxSingleQuote": false,
"endOfLine": "auto",
"importOrder": [
"^(assert|buffer|child_process|cluster|console|constants|crypto|dgram|dns|domain|events|fs|http|http2|https|module|net|os|path|perf_hooks|process|punycode|querystring|readline|repl|stream|string_decoder|timers|tls|tty|url|util|v8|vm|zlib)(/.*)?$",
"<THIRD_PARTY_MODULES>",
"^src/(?!.*\\.(css|scss)$)",
"^[./](?!.*\\.(css|scss)$)",
"^(?![./]).+\\.(scss|css)$",
"^src/.+\\.(scss|css)$",
"^[./].+\\.(scss|css)$"
],
"importOrderCaseInsensitive": true,
"importOrderSortSpecifiers": true
}