Skip to content
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.

Commit

Permalink
Merge branch 'master' into strict_type_predicates
Browse files Browse the repository at this point in the history
  • Loading branch information
andy-hanson committed Jan 19, 2017
2 parents 10b6cee + b6171dd commit c57cbf4
Show file tree
Hide file tree
Showing 141 changed files with 799 additions and 4,906 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,6 @@ typings/.basedir.ts
# vim swap files
*.swo
*.swp

docs/_data/rules.json
docs/rules/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ const files = Linter.getFileNames(program);
const results = files.map(file => {
const fileContents = program.getSourceFile(file).getFullText();
const linter = new Linter(file, fileContents, options, program);
return result.lint();
return linter.lint();
});
```

Expand Down
5 changes: 3 additions & 2 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ general:
- gh-pages
dependencies:
pre:
- case $CIRCLE_NODE_INDEX in 0) nvm use 4.2 ;; 1) nvm use 5.7 ;; 2) nvm use 6.1 ;; esac
- case $CIRCLE_NODE_INDEX in 0) nvm use 4.2 ;; 1) nvm use 5.7 ;; [2-3]) nvm use 6.1 ;; esac
test:
override:
- npm run verify
- case $CIRCLE_NODE_INDEX in [0-2]) npm run verify ;; 3) npm run clean && npm run compile && npm i [email protected] && npm run test ;; esac:
parallel: true
deployment:
npm-latest:
# match semver tag (e.g. 3.12.7)
Expand Down
Loading

0 comments on commit c57cbf4

Please sign in to comment.