Format .jshintrc in the same style as the code.

I noticed the .jshintrc uses tabs for indentation where main.js uses spaces, as does the
.editconfig specify to use.
master
Joshua Appelman 2014-06-21 02:08:58 +02:00
parent dd3d8c7d7a
commit 65900f3465
1 changed files with 17 additions and 17 deletions

View File

@ -1,19 +1,19 @@
{
"node": true,
"browser": true,
"esnext": true,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 4,
"newcap": true,
"noarg": true,
"quotmark": "single",
"undef": true,
"unused": "vars",
"strict": true,
"trailing": true,
"smarttabs": true
"node": true,
"browser": true,
"esnext": true,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 4,
"newcap": true,
"noarg": true,
"quotmark": "single",
"undef": true,
"unused": "vars",
"strict": true,
"trailing": true,
"smarttabs": true
}