Files
2023-06-13 11:04:07 +08:00

14 lines
233 B
JavaScript

const config = {
semi: false,
tabWidth: 2,
printWidth: 80,
singleQuote: true,
jsxSingleQuote: true,
trailingComma: 'none',
arrowParens: 'always',
endOfLine: 'auto',
noBracketSpacing: true
}
module.exports = config