aboutsummaryrefslogtreecommitdiff
path: root/.prettierrc.json
blob: 5c947a7d419035fc09ba7aaa4123de47717c9cdc (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": ["*CustomClientEvents.ts"],
			"options": {
				"printWidth": 80
			}
		},
		{
			"files": ["badwords.ts", "badlinks.ts", "badlinks-secret.ts"],
			"options": {
				"singleQuote": false,
				"trailingComma": "es5"
			}
		}
	]
}