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.
22 lines
466 B
22 lines
466 B
1 year ago
|
module.exports = {
|
||
|
printWidth: 120,
|
||
|
tabWidth: 2,
|
||
|
useTabs: false,
|
||
|
semi: true,
|
||
|
singleQuote: true,
|
||
|
quoteProps: 'as-needed',
|
||
|
jsxSingleQuote: false,
|
||
|
trailingComma: 'all',
|
||
|
bracketSpacing: true,
|
||
|
arrowParens: 'always',
|
||
|
rangeStart: 0,
|
||
|
rangeEnd: Infinity,
|
||
|
requirePragma: false,
|
||
|
insertPragma: false,
|
||
|
proseWrap: 'preserve',
|
||
|
htmlWhitespaceSensitivity: 'css',
|
||
|
vueIndentScriptAndStyle: false,
|
||
|
singleAttributePerLine: true,
|
||
|
endOfLine: 'lf',
|
||
|
};
|