This site does not allow itself to be embedded. You can still read it on the original site — the toolbar below keeps your place in the directory.
A .jshintrc boilerplate example. .jshintrc { 'node' : true , 'browser' : true , 'esnext' : true , 'bitwise' : true , 'camelcase' : true , 'curly' : true , 'eqeqeq' : true , 'immed' : true , 'indent' : 4 , 'latedef' : true , 'newcap' : true , 'noarg' : true , 'quotmark' : 'single' , 'regexp' : true , 'undef' : true , 'unused' : true , 'strict' : true , 'trailing' : true , 'smarttabs' : true ,…
A .jshintrc boilerplate example.
.jshintrc
{
"node": true,
"browser": true,
"esnext": true,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 4,
"latedef": true,
"newcap": true,
"noarg": true,
"quotmark": "single",
"regexp": true,
"undef": true,
"unused": true,
"strict": true,
"trailing": true,
"smarttabs": true,
"jquery": true,
"globals": {
"define": true,
"require": true,
"module": true,
"export": true,
"$": true,
"_": true
}
}
Comments
Nothing yet. Say the first thing.
Sign in to join the conversation.