summaryrefslogtreecommitdiffstats
path: root/prettier.config.js
blob: fc124d6372979e0ebcdc4d469bac06a84e1f5e89 (plain)
1
2
3
4
5
6
7
8
9
10
module.exports = {
	semi: true,
	trailingComma: 'all',
	arrowParens: 'always',
	singleQuote: true,
	jsxSingleQuote: true,
	printWidth: 120,
	useTabs: true,
	tabWidth: 8,
};