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

Migrating to Typescript #121

Open
wants to merge 13 commits into
base: master
Choose a base branch
from
Open

Migrating to Typescript #121

wants to merge 13 commits into from

Conversation

cgilson
Copy link
Contributor

@cgilson cgilson commented Apr 21, 2016

  • Modified project structure to more closely match other TS projects
  • Removed dead code (case-map)
  • Typescript!

@@ -141,7 +143,7 @@ function runWithOptions(options) {
if (options['config-file'] && options['config-field']) {
var field = options['config-field'];
try {
var contents = fs.readFileSync(options['config-file']);
var contents:any = fs.readFileSync(options['config-file']);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Favor let over var wherever possible.

Create a new variable name instead of avoiding type checks for contents.

@googlebot
Copy link

We found a Contributor License Agreement for you (the sender of this pull request), but were unable to find agreements for the commit author(s). If you authored these, maybe you used a different email address in the git commits than was used to sign the CLA (login here to double check)? If these were authored by someone else, then they will need to sign a CLA as well, and confirm that they're okay with these being contributed to Google.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants