Add contribution.md to node-red-nodes

to make it more obvious.
correct spelling in readme.md
revert .jshintrc
This commit is contained in:
Dave Conway-Jones
2016-04-12 15:12:37 +01:00
parent de304c8a76
commit cc9a6d887b
3 changed files with 74 additions and 12 deletions

View File

@@ -1,8 +1,4 @@
{
"predef": [ "RED" ],
"node": true,
"browser": true,
"jquery": true,
"asi": true, // allow missing semicolons
"curly": true, // require braces
"eqnull": true, // ignore ==null
@@ -10,9 +6,9 @@
"immed": true, // require immediate functions to be wrapped in ( )
"nonbsp": true, // warn on unexpected whitespace breaking chars
//"strict": true, // commented out for now as it causes 100s of warnings, but want to get there eventually
//"unused": true, // Check for unused functions and variables
//"unused": true, // Check for unused functions and variables
"loopfunc": true, // allow functions to be defined in loops
//"expr": true, // allow ternery operator syntax...
"sub": true, // don't warn that foo['bar'] should be written as foo.bar
"undef": true // warn about undefined variables
"proto": true // allow setting of __proto__ in node < v0.12
}