Skip to content

Commit b603bb2

Browse files
author
Kent C. Dodds
committed
Added relevant .jshintrc
Tried to match the style as closely as I could with the [JSHint Options](http://www.jshint.com/docs/options/). Used a [fun little script](https://gist.github.com/kentcdodds/11293570) to make this easier.
1 parent 5c4826f commit b603bb2

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.jshintrc

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"camelcase": true,
3+
"curly": true,
4+
"eqeqeq": true,
5+
"freeze": true,
6+
"indent": 2,
7+
"newcap": true,
8+
"quotmark": "single",
9+
"maxdepth": 3,
10+
"maxstatements": 15,
11+
"maxlen": 80,
12+
"eqnull": true,
13+
"funcscope": true,
14+
"node": true
15+
}

0 commit comments

Comments
 (0)