This repository has been archived by the owner on Mar 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 887
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade prettier and run over all files (#4214)
* Upgrade prettier and run over all files This: * Upgrades Prettier to 1.14 whic adds yml support. * Turns on `trailing commas = all` as that seems to be what most of the code is doing. * Runs prettier over everything This also has the bonus of making future PRs much smaller. * Removed ts@next-breaking unquoted "bye-bye"
- Loading branch information
Showing
34 changed files
with
1,843 additions
and
995 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{ | ||
"tabWidth": 4, | ||
"printWidth": 100 | ||
"printWidth": 100, | ||
"trailingComma": "all" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,19 +2,19 @@ | |
title: TSLint | ||
email: [email protected] | ||
description: > # this means to ignore newlines until "baseurl:" | ||
TSLint documentation. A linter for the TypeScript language. | ||
TSLint documentation. A linter for the TypeScript language. | ||
baseurl: "/tslint" # the subpath of your site, e.g. /blog/ | ||
url: "https://palantir.github.io/" # the base hostname & protocol for your site | ||
twitter_username: PalantirTech | ||
github_username: palantir/tslint | ||
github_username: palantir/tslint | ||
|
||
# Build settings | ||
markdown: kramdown | ||
markdown_ext: md | ||
exclude: [vendor] | ||
|
||
page_gen: | ||
- data: rules | ||
template: rule | ||
name: ruleName | ||
dir: rules | ||
- data: rules | ||
template: rule | ||
name: ruleName | ||
dir: rules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.