mirror of
https://github.com/Cian-H/invenio-theme-iform.git
synced 2025-12-22 12:41:57 +00:00
30 lines
570 B
JavaScript
30 lines
570 B
JavaScript
const config = {
|
|
singleQuote: false,
|
|
tabWidth: 4,
|
|
trailingComma: "all",
|
|
printWidth: 100,
|
|
plugins: ["prettier-plugin-jinja-template"],
|
|
overrides: [
|
|
{
|
|
files: ["*.html"],
|
|
options: {
|
|
parser: "jinja-template",
|
|
},
|
|
},
|
|
{
|
|
files: "*.yaml",
|
|
options: {
|
|
tabWidth: 2,
|
|
},
|
|
},
|
|
{
|
|
files: "*.yml",
|
|
options: {
|
|
tabWidth: 2,
|
|
},
|
|
},
|
|
],
|
|
};
|
|
|
|
export default config;
|