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.
1 parent b19c495 commit cce4afaCopy full SHA for cce4afa
.prettierrc.json
package.json
@@ -81,5 +81,35 @@
81
"es6": true,
82
"jest/globals": true
83
}
84
- }
+ },
85
+ "prettier": {
86
+ "printWidth": 80,
87
+ "tabWidth": 2,
88
+ "useTabs": false,
89
+ "singleQuote": false,
90
+ "overrides": [
91
+ {
92
+ "files": ["*.json"],
93
+ "options": {
94
+ "parser": "json"
95
+ }
96
97
98
+ "files": ["**/*.ts"],
99
100
+ "parser": "typescript",
101
+ "arrowParens": "avoid",
102
+ "bracketSpacing": true,
103
+ "semi": false,
104
+ "trailingComma": "none"
105
106
107
108
+ "files": ["*.yml", ".github/**/*.yml"],
109
110
+ "parser": "yaml"
111
112
113
+ ]
114
115
0 commit comments