dashboard/.prettierrc.js

21 lines
333 B
JavaScript
Raw Normal View History

2021-06-14 11:29:03 +02:00
module.exports = {
bracketSpacing: true,
printWidth: 80,
parser: "typescript",
trailingComma: "all",
arrowParens: "always",
overrides: [
{
files: "README.md",
options: {
parser: "markdown",
},
},
{
files: "*.json",
options: {
parser: "json",
}
}
],
};