Skip to content

Commit

Permalink
Improved rule output and fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
blakeembrey committed Jul 13, 2017
1 parent f612a32 commit 1767594
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -37,11 +37,11 @@
},
"homepage": "https://github.com/blakeembrey/tslint-config-standard",
"devDependencies": {
"@types/node": "^8.0.0",
"@types/node": "^8.0.11",
"blue-tape": "^1.0.0",
"standard": "^10.0.0",
"tap-spec": "^4.1.1",
"tslint": "^5.4.2",
"tslint": "^5.5.0",
"typescript": "^2.3.4"
},
"dependencies": {
Expand Down
4 changes: 4 additions & 0 deletions test/rules.out
@@ -1,6 +1,10 @@
ERROR: /rules/curly.ts[4, 3]: if statements must be braced
ERROR: /rules/handle-callback-err.ts[1, 21]: Expected error to be handled
ERROR: /rules/import-spacing.ts[2, 1]: All imports are unused.
ERROR: /rules/import-spacing.ts[1, 22]: missing whitespace
ERROR: /rules/import-spacing.ts[1, 8]: missing whitespace
ERROR: /rules/import-spacing.ts[2, 17]: missing whitespace
ERROR: /rules/import-spacing.ts[2, 9]: missing whitespace
ERROR: /rules/import-spacing.ts[1, 7]: missing whitespace
ERROR: /rules/no-constant-condition.ts[1, 5]: unexpected constant condition
ERROR: /rules/no-inner-declarations.ts[4, 20]: block is empty
Expand Down

3 comments on commit 1767594

@BurtHarris
Copy link
Contributor

Choose a reason for hiding this comment

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

@blakeembrey: what broke the build?

@blakeembrey
Copy link
Owner Author

Choose a reason for hiding this comment

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

Definitely nothing you did 😄 TSLint had updated and the output had broken a little while back, I was just slow to actually fix the code output to verify: #33.

@BurtHarris
Copy link
Contributor

Choose a reason for hiding this comment

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

Thanks, that gives me a good idea of what greenkeeper is about. That's slick.

Please sign in to comment.