frontend/.prettierrc.js

13 lines
228 B
JavaScript
Raw Permalink Normal View History

2023-09-08 19:03:31 +03:00
module.exports = {
arrowParens: 'always',
bracketSameLine: true,
bracketSpacing: true,
endOfLine: 'auto',
printWidth: 120,
semi: true,
singleQuote: true,
tabWidth: 2,
trailingComma: 'none',
useTabs: false
};