Skip to content

Commit cd4d5fd

Browse files
committed
Add prettier config
1 parent 50e1431 commit cd4d5fd

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

prettier.config.ts

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import { type Config } from "prettier";
2+
3+
const config: Config = {
4+
trailingComma: "all",
5+
tabWidth: 2,
6+
semi: true,
7+
singleQuote: false,
8+
arrowParens: "always",
9+
useTabs: false,
10+
};
11+
12+
module.exports = config;

0 commit comments

Comments
 (0)