internet_ml/web/frontend/prettier.config.js

12 lines
202 B
TypeScript
Raw Normal View History

2022-12-30 04:08:09 +00:00
const options = {
arrowParens: 'avoid',
singleQuote: true,
bracketSpacing: true,
endOfLine: 'lf',
semi: false,
tabWidth: 4,
trailingComma: 'none'
}
module.exports = options