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
466 B
21 lines
466 B
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',
|
|
};
|
|
|