mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
* [Toolchain] Add Prettier * [Toolchain] Add lint-staged * [Toolchain] Apply prettier to some types * Switch to using precise commits so that only changed code is ran through prettier
21 lines
350 B
JSON
21 lines
350 B
JSON
{
|
|
"$schema": "http://json.schemastore.org/prettierrc",
|
|
|
|
"parser": "typescript",
|
|
"printWidth": 120,
|
|
"semi": true,
|
|
"singleQuote": true,
|
|
"tabWidth": 4,
|
|
"trailingComma": "es5",
|
|
|
|
"overrides": [
|
|
{
|
|
"files": ["*.md"],
|
|
"options": {
|
|
"tabWidth": 2
|
|
}
|
|
}
|
|
]
|
|
}
|
|
|