Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jonschlinkert committed Jun 1, 2015
1 parent bdc73f5 commit abe9ee0
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Expand Up @@ -13,6 +13,6 @@ insert_final_newline = true
trim_trailing_whitespace = false
insert_final_newline = false

[{test,fixtures,actual}/**]
[test/**/*]
trim_trailing_whitespace = false
insert_final_newline = false
7 changes: 5 additions & 2 deletions .gitattributes
@@ -1,2 +1,5 @@
* text=auto
/test/** text eol=lf
* text=lf
*.jpg binary
*.gif binary
*.png binary
*.jpeg binary
27 changes: 16 additions & 11 deletions .gitignore
@@ -1,16 +1,21 @@
*.DS_Store
lib-cov
*.seed
*.log
*.csv
*.dat
*.out
*.pid
*.gz
*.rar
*.sublime-*
_gh_pages
bower_components
node_modules
npm-debug.log
actual
test/actual
temp
tmp
.DS*
TODO.md
vendor
.idea
benchmark

# Always-ignore dirs
node_modules/
tmp/
temp/
vendor/
coverage
support
10 changes: 10 additions & 0 deletions .jshintrc
@@ -1,18 +1,28 @@
{
"asi": false,
"boss": true,
"camelcase": true,
"curly": false,
"eqeqeq": true,
"eqnull": true,
"esnext": true,
"freeze": true,
"funcscope": true,
"immed": true,
"indent": 2,
"latedef": false,
"laxbreak": true,
"laxcomma": false,
"maxcomplexity": 7,
"maxdepth": 3,
"mocha": true,
"newcap": true,
"noarg": true,
"node": true,
"noempty": true,
"nonbsp": true,
"quotmark": "single",
"strict": true,
"sub": true,
"undef": true,
"unused": true
Expand Down

0 comments on commit abe9ee0

Please sign in to comment.