You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
426 B
21 lines
426 B
2 weeks ago
|
module.exports = {
|
||
|
printWidth: 80,
|
||
|
tabWidth: 2,
|
||
|
useTabs: false,
|
||
|
semi: false,
|
||
|
singleQuote: true,
|
||
|
quoteProps: 'as-needed',
|
||
|
jsxSingleQuote: false,
|
||
|
trailingComma: 'es5',
|
||
|
bracketSpacing: true,
|
||
|
jsxBracketSameLine: false,
|
||
|
arrowParens: 'always',
|
||
|
rangeStart: 0,
|
||
|
rangeEnd: Infinity,
|
||
|
endOfLine: 'lf',
|
||
|
requirePragma: false,
|
||
|
insertPragma: false,
|
||
|
proseWrap: 'always',
|
||
|
htmlWhitespaceSensitivity: 'css',
|
||
|
}
|