MQL5-Google-Onedrive/pentagi/frontend/.prettierrc

36 lines
854 B
Text
Raw Permalink Normal View History

{
"$schema": "https://json.schemastore.org/prettierrc",
"printWidth": 120,
"tabWidth": 4,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "all",
"singleAttributePerLine": true,
"bracketSpacing": true,
"arrowParens": "always",
"endOfLine": "lf",
"plugins": ["prettier-plugin-tailwindcss"],
"tailwindFunctions": ["cn"],
"overrides": [
{
"files": ["src/graphql/types.ts"],
"options": {
"tabWidth": 4
}
},
{
"files": ["*.yml"],
"options": {
"tabWidth": 2
}
},
{
"files": ["*.xml"],
"options": {
"parser": "xml",
"plugins": ["@prettier/plugin-xml"]
}
}
]
}