forked from balderdashy/sails
-
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.
implemented JSHINTRC. This will help with code consistency
- Loading branch information
1 parent
6fa45b5
commit 736adc7
Showing
2 changed files
with
46 additions
and
0 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,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, | ||
} |
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,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 |