We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ead54ad commit 7608d35Copy full SHA for 7608d35
.prettierignore
@@ -12,6 +12,7 @@ output/
12
13
# Webdriver-ts
14
webdriver-ts/results.json
15
+webdriver-ts/unittests/
16
webdriver-ts/traces/
17
18
# Webdriver-ts-results
.prettierrc.json
@@ -1,3 +1,16 @@
1
{
2
- "trailingComma": "es5"
+ "printWidth": 100,
3
+ "tabWidth": 2,
4
+ "useTabs": false,
5
+ "semi": true,
6
+ "singleQuote": false,
7
+ "quoteProps": "as-needed",
8
+ "jsxSingleQuote": false,
9
+ "trailingComma": "es5",
10
+ "bracketSpacing": true,
11
+ "bracketSameLine": false,
+ "arrowParens": "always",
+ "proseWrap": "preserve",
+ "endOfLine": "lf",
+ "singleAttributePerLine": false
}
0 commit comments