aboutsummaryrefslogtreecommitdiff
path: root/.prettierrc.json
blob: 85b85a1b2c875f738df30af60cade393d136fb74 (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
29
{
	"printWidth": 130,
	"useTabs": true,
	"quoteProps": "consistent",
	"singleQuote": true,
	"trailingComma": "none",
	"endOfLine": "lf",
	"overrides": [
		{
			"files": [
				"*BushClientEvents.d.ts"
			],
			"options": {
				"printWidth": 80
			}
		},
		{
			"files": [
				"badwords.ts",
				"badlinks.ts",
				"badlinks-secret.ts"
			],
			"options": {
				"singleQuote": false,
				"trailingComma": "es5"
			}
		}
	]
}