Skip to content

Commit

Permalink
make jshint the same as in Gruntfile; bump npm beta version
Browse files Browse the repository at this point in the history
  • Loading branch information
jsachs committed Sep 30, 2015
1 parent fafc1af commit 6cd17d5
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 5 deletions.
26 changes: 22 additions & 4 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
{
"browser": false, // Standard browser globals e.g. `window`, `document`.

"node": true, // Enable globals available when code is running inside of the NodeJS runtime environment.
"indent": 4 // Specify indentation spacing
"browser": true,
"smarttabs": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"latedef": true,
"newcap": true,
"noarg": true,
"sub": true,
"undef": false,
"boss": true,
"eqnull": true,
"node": true,
"expr": true,
"globals": {
"it": true,
"xit": true,
"describe": true,
"before": true,
"after": true,
"done": true
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "blue-button",
"version": "1.6.0-beta.2",
"version": "1.6.0-beta.3",
"description": "Blue Button (CCDA, C32, CMS) to JSON Parser.",
"main": "./index.js",
"directories": {
Expand Down

0 comments on commit 6cd17d5

Please sign in to comment.