dashboard/.prettierrc.js

10 lines
153 B
JavaScript
Raw Normal View History

2020-12-01 18:15:40 +00:00
module.exports = {
semi: true,
trailingComma: "all",
singleQuote: true,
printWidth: 120,
tabWidth: 4,
2021-01-29 16:02:23 +00:00
useTabs: false,
endOfLine: "auto"
2020-12-01 18:15:40 +00:00
};