internet_ml/web/frontend/prettier.config.js

12 lines
202 B
TypeScript

const options = {
arrowParens: 'avoid',
singleQuote: true,
bracketSpacing: true,
endOfLine: 'lf',
semi: false,
tabWidth: 4,
trailingComma: 'none'
}
module.exports = options