You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
demoncord-rewrite/prettier.config.js

23 lines
331 B

module.exports = {
tabWidth: 4, //todo: is this necessary if we're still using tabs
useTabs: true,
singleQuote: false,
semi: true,
bracketSpacing: true,
trailingComma: "none",
overrides: [
{
files: "*.js",
options: {
parser: "babel"
}
},
{
files: "*.d.ts",
options: {
semi: false
}
}
]
};