mirror of
https://github.com/overleaf/overleaf.git
synced 2025-12-05 01:10:29 +00:00
* [monorepo] consolidate .editorconfig files at the root * [monorepo] run prettier on Jenkinsfiles * [saas-e2e] increase timeout for XeTeX compile GitOrigin-RevId: 48aa82f7c81611899837753ae92c7732998d4ca5
24 lines
517 B
Plaintext
24 lines
517 B
Plaintext
{
|
|
"arrowParens": "avoid",
|
|
"jsxSingleQuote": false,
|
|
"pugAttributeSeparator": "as-needed",
|
|
"pugBracketSpacing": false,
|
|
"pugClassNotation": "as-is",
|
|
"pugIdNotation": "as-is",
|
|
"pugSortAttributesBeginning": ["name", "data-type"],
|
|
"plugins": ["@prettier/plugin-pug", "prettier-plugin-groovy"],
|
|
"semi": false,
|
|
"singleQuote": true,
|
|
"trailingComma": "es5",
|
|
"tabWidth": 2,
|
|
"useTabs": false,
|
|
"overrides": [
|
|
{
|
|
"files": "*.pug",
|
|
"options": {
|
|
"useTabs": true
|
|
}
|
|
}
|
|
]
|
|
}
|