forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.dprint.jsonc
62 lines (60 loc) · 2.08 KB
/
.dprint.jsonc
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"excludes": [
// These files are auto-generated and don't need to be formatted.
// NOTE: We generally prefer that packages be formatted with dprint.
// Packages are generally only listed if they predate our using dprint (August 2023).
// If your package is listed, please consider adding dprint fmt to its generation.
"./types/custom-functions-runtime",
"./types/dojo",
"./types/facebook-nodejs-business-sdk",
"./types/fhir",
"./types/fibjs",
"./types/get-intrinsic",
"./types/google-publisher-tag",
"./types/google.maps",
"./types/locutus",
"./types/lodash",
"./types/material-ui",
"./types/meteor",
"./types/microsoft-graph",
"./types/nginstack__engine",
"./types/node/**/inspector.d.ts",
"./types/office-js-preview",
"./types/office-js",
"./types/office-runtime",
"./types/oibackoff",
"./types/openui5",
"./types/p5",
"./types/react-native",
"./types/recurly__recurly-js",
"./types/sawtooth-sdk",
"./types/winrt-uwp",
"./types/vscode",
// Machine-generated files.
"./docs/support-window.json",
"./notNeededPackages.json",
"**/package-lock.json",
"./types/**/*.md"
],
"prettier": {
"associations": [
"**/*.{yaml,yml}"
],
"yml.tabWidth": 2,
"yaml.tabWidth": 2,
"yml.singleQuote": true,
"yaml.singleQuote": true
},
// NOTE: if extending this list, also update settings.template.json.
"plugins": [
"https://plugins.dprint.dev/typescript-0.91.4.wasm",
"https://plugins.dprint.dev/json-0.19.3.wasm",
"https://plugins.dprint.dev/markdown-0.17.1.wasm",
"https://plugins.dprint.dev/prettier-0.40.0.json@68c668863ec834d4be0f6f5ccaab415df75336a992aceb7eeeb14fdf096a9e9c"
],
"indentWidth": 4,
"lineWidth": 120,
"json": {
"trailingCommas": "never" // Our tsconfig files must be parsable by JSON.parse.
}
}