aboutsummaryrefslogtreecommitdiff
path: root/.prettierrc.json
blob: d704546752d4cee901e878a4528ec7ac548683e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
	"printWidth": 130,
	"useTabs": true,
	"quoteProps": "consistent",
	"singleQuote": true,
	"trailingComma": "none",
	"endOfLine": "lf",
	"overrides": [
		{
			"files": ["*BushClientEvents.ts"],
			"options": {
				"printWidth": 80
			}
		},
		{
			"files": ["badwords.ts", "badlinks.ts", "badlinks-secret.ts"],
			"options": {
				"singleQuote": false,
				"trailingComma": "es5"
			}
		}
	]
}