UNPKG

uupaa.watch.js

Version:

Watch directory and files.

28 lines (23 loc) 692 B
{ // http://www.jshint.com/docs/options/ // --- Enforcing options --- "bitwise": false, // true is prohibits the use of bitwise operators. "undef": true, "unused": true, "maxlen": 200, // --- Relaxing options --- "debug": true, "gcl": true, "maxerr": 10000, "proto": true, "sub": true, "newcap": false, // Require capitalization of all constructor functions e.g. `new F()` "validthis":true, // avoid 'bind(this) -> Possible strict violation.' // --- Environments --- "browser": true, "node": true, "worker": true, "devel": true, "phantom": true, "nonstandard": true }