DefinitelyTyped/.prettierrc.json
Christopher Pappas a52799f9e9 Add Prettier, Lint Staged to help maintain repo consistency (#35672)
* [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
2019-06-14 08:40:48 -07:00

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
}
}
]
}