Node-Red configuration
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

.jshintrc 924B

12345678910111213141516
  1. {
  2. //"undef": true, // require all non-globals to be declared
  3. "asi": true, // allow missing semicolons
  4. "curly": true, // require braces
  5. "eqnull": true, // ignore ==null
  6. "forin": true, // require property filtering in "for in" loops
  7. "immed": true, // require immediate functions to be wrapped in ( )
  8. "nonbsp": true, // warn on unexpected whitespace breaking chars
  9. //"strict": true, // commented out for now as it causes 100s of warnings, but want to get there eventually
  10. //"unused": true, // Check for unused functions and variables
  11. "loopfunc": true, // allow functions to be defined in loops
  12. //"expr": true, // allow ternery operator syntax...
  13. "sub": true, // don't warn that foo['bar'] should be written as foo.bar
  14. "proto": true, // allow setting of __proto__ in node < v0.12
  15. "esversion": 6 // allow es6
  16. }