We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
.prettierrc.js
eslint.config.mjs
1 parent acceb01 commit 3a57192Copy full SHA for 3a57192
.prettierrc.js
prettier.config.mjs
@@ -0,0 +1,13 @@
1
+/**
2
+ * @see https://prettier.io/docs/en/configuration.html
3
+ * @type {import("prettier").Config}
4
+ */
5
+const config = {
6
+ printWidth: 100,
7
+ semi: false,
8
+ singleQuote: true,
9
+ tabWidth: 2,
10
+ trailingComma: 'es5',
11
+};
12
+
13
+export default config;
0 commit comments