Skip to content

Commit 220b490

Browse files
committed
fix: prettier config
1 parent 86f0415 commit 220b490

1 file changed

Lines changed: 15 additions & 1 deletion

File tree

prettier.config.cjs

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,23 @@
11
module.exports = {
2+
semi: true,
3+
singleQuote: false,
4+
trailingComma: "all",
5+
tabWidth: 2,
6+
printWidth: 90,
7+
bracketSpacing: true,
8+
arrowParens: "always",
9+
quoteProps: "consistent",
10+
endOfLine: "lf",
11+
};
12+
13+
//Previous confis:
14+
15+
/*module.exports = {
216
semi: true,
317
singleQuote: false,
418
trailingComma: "all",
519
tabWidth: 2,
620
printWidth: 100,
721
bracketSpacing: true,
822
arrowParens: "avoid",
9-
};
23+
};*/

0 commit comments

Comments
 (0)