0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-03-15 15:29:22 +01:00

Merge pull request #12760 from ZDroid/grunt-jshintrc

Improve grunt/.jshintrc
This commit is contained in:
Chris Rebert 2014-02-18 00:57:45 -08:00
commit 27de737521

View File

@ -1,5 +1,4 @@
{ {
"asi": false,
"camelcase": true, "camelcase": true,
"curly": true, "curly": true,
"eqeqeq": true, "eqeqeq": true,
@ -7,10 +6,10 @@
"indent": 2, "indent": 2,
"newcap": true, "newcap": true,
"noarg": true, "noarg": true,
"node": true,
"nonbsp": true, "nonbsp": true,
"quotmark": "single", "quotmark": "single",
"undef": true,
"strict": true, "strict": true,
"trailing": true, "trailing": true,
"node" : true "undef": true
} }