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.
Merge branch 'master' into variable-name-caps
- Loading branch information
Showing
81 changed files
with
2,954 additions
and
1,107 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 |
---|---|---|
|
@@ -96,6 +96,17 @@ jobs: | |
key: dependency-cache-{{ checksum "yarn.lock" }} | ||
- run: yarn add [email protected] | ||
- run: yarn test | ||
test3.0: | ||
docker: | ||
- image: circleci/node:6 | ||
steps: | ||
- checkout | ||
- attach_workspace: | ||
at: '.' | ||
- restore_cache: | ||
key: dependency-cache-{{ checksum "yarn.lock" }} | ||
- run: yarn add [email protected] | ||
- run: yarn test | ||
testRc: | ||
docker: | ||
- image: circleci/node:6 | ||
|
@@ -145,6 +156,9 @@ workflows: | |
- test2.9: | ||
requires: | ||
- build | ||
- test3.0: | ||
requires: | ||
- build | ||
- testRc: | ||
requires: | ||
- build | ||
|
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.