Skip to content

Instantly share code, notes, and snippets.

@RinatMullayanov
Created September 25, 2014 16:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RinatMullayanov/6b948176d3d02add0144 to your computer and use it in GitHub Desktop.
Save RinatMullayanov/6b948176d3d02add0144 to your computer and use it in GitHub Desktop.
jshintrc for nodejs - clear - without comments
{
"boss": true,
"node": true,
"browser": true,
"esnext": true,
"bitwise": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 2,
"latedef": true,
"noarg": true,
"quotmark": "single",
"regexp": true,
"undef": true,
"trailing": true,
"smarttabs": true,
"camelcase": true,
"newcap": true,
"unused": "vars",
"strict": true,
"forin": true,
"plusplus": false ,
"globals": {
"module": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment