forked from epappas/rollbar-hapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from soxhub/1301-supress-422-responses
Reduce rollbar noise
- Loading branch information
Showing
6 changed files
with
237 additions
and
40 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
node_modules | ||
db | ||
config | ||
bin |
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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
{ | ||
"rules": { | ||
"indent": [ | ||
2, | ||
"tab" | ||
], | ||
"linebreak-style": [ | ||
2, | ||
"unix" | ||
], | ||
"semi": [ | ||
2, | ||
"always" | ||
], | ||
"no-unused-vars": [ | ||
2, | ||
{"args": "after-used", | ||
"argsIgnorePattern": "^_"} | ||
], | ||
"one-var": [ | ||
2, | ||
"never" | ||
], | ||
"no-multiple-empty-lines": [ | ||
1, | ||
{"max": 1} | ||
], | ||
"padded-blocks": [ | ||
1, | ||
"never" | ||
], | ||
"no-trailing-spaces": [ | ||
1, | ||
{ "skipBlankLines": true } | ||
], | ||
"no-spaced-func": [ | ||
2 | ||
], | ||
"strict": ["error"] | ||
|
||
}, | ||
"parserOptions": { | ||
"ecmaVersion": 8 | ||
}, | ||
"env": { | ||
"es6": true, | ||
"node": true | ||
}, | ||
"globals": { | ||
"requireRoot": true | ||
}, | ||
"extends": "eslint:recommended" | ||
} |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,6 +1,6 @@ | ||
{ | ||
"name": "rollbar-hapi", | ||
"version": "0.0.9", | ||
"version": "0.0.10", | ||
"description": "A Hapi plugin for rollbar painless integration", | ||
"author": "Evangelos Pappas <[email protected]>", | ||
"engine": "node >= 0.10.x", | ||
|
Oops, something went wrong.