RSS Amplifier

(untitled) · Jun 2, 2015

.jshintrc boilerplate example

0
Sign in to vote or save

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
 }
}

Read on miguelmota.com

Comments

Nothing yet. Say the first thing.

    Sign in to join the conversation.