Skip to content

Commit

Permalink
implemented JSHINTRC. This will help with code consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
dcbartlett committed Apr 1, 2013
1 parent 6fa45b5 commit 736adc7
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"undef": true,
"unused": true,
"curly": true,
"immed": true,
"latedef": true,
"noarg": true,
"noempty": true,
"plusplus": true,
"quotmark": true,
"strict": true,
"trailing": true,
"asi": false,
"eqnull": true,
"eval": true,
"sub": true,
"supernew": true,
}
28 changes: 28 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
*#
node_modules
ssl
.DS_STORE
*~
.idea

nbproject

# Ignore config file w/ sensitive information
config/db.js

# Ignore dev minified/compiled assets
public/stylesheets/_*.css
public/js/_*.js

# Ignore production minified/compiled assets
public/_target/*.js
public/_target/*.css

*.swo
*.swp
*.swn
*.swm


#Ignore JSHint RC file for NPM
.jshintrc

0 comments on commit 736adc7

Please sign in to comment.