Skip to content

Commit c23f2b0

Browse files
1.2.0 (#4)
1 parent 132bacb commit c23f2b0

File tree

78 files changed

+1551
-2250
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+1551
-2250
lines changed

.prettierrc.js

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
module.exports = {
2+
tabWidth: 2,
3+
printWidth: 100,
4+
useTabs: false,
5+
semi: true,
6+
singleQuote: true,
7+
trailingComma: "all",
8+
bracketSpacing: true,
9+
arrowParens: "always",
10+
endOfLine: "auto",
11+
importOrderSeparation: true,
12+
importOrderSortSpecifiers: true,
13+
importOrderCaseInsensitive: true,
14+
importOrderParserPlugins: [
15+
"classProperties",
16+
"decorators-legacy",
17+
"typescript",
18+
],
19+
importOrder: ["<THIRD_PARTY_MODULES>", "^@/(.*)$", "^../(.*)", "^./(.*)"],
20+
plugins: ["@trivago/prettier-plugin-sort-imports"],
21+
};

0 commit comments

Comments
 (0)