UNPKG

655 BJavaScriptView Raw
1"use strict";
2
3module.exports = {
4 printWidth: 80,
5 // When we're using Prettier, we can also just use tabs.
6 // This way every developer is free to configure their
7 // preferred indentation width.
8 useTabs: true,
9 semi: true,
10 singleQuote: false,
11 quoteProps: "as-needed",
12 jsxSingleQuote: false,
13 trailingComma: "all",
14 bracketSpacing: false,
15 jsxBracketSameLine: false,
16 // Adding a parameter to an arrow functions becomes easier when we add parens all the time.
17 arrowParens: "always",
18 proseWrap: "preserve",
19 htmlWhitespaceSensitivity: "css",
20 vueIndentScriptAndStyle: true,
21 endOfLine: "lf"
22};