mirror of
https://github.com/Cian-H/am-d-model.eu.git
synced 2025-12-22 21:41:57 +00:00
18 lines
321 B
JavaScript
18 lines
321 B
JavaScript
const config = {
|
|
singleQuote: false,
|
|
tabWidth: 4,
|
|
trailingComma: "all",
|
|
printWidth: 100,
|
|
plugins: ["prettier-plugin-svelte"],
|
|
overrides: [
|
|
{
|
|
files: "*.svelte",
|
|
options: {
|
|
parser: "svelte",
|
|
},
|
|
},
|
|
],
|
|
};
|
|
|
|
export default config;
|