cylon/.jshintrc

37 lines
539 B
Plaintext
Raw Normal View History

2013-10-18 14:55:48 +08:00
{
"curly": true,
"eqeqeq": true,
"immed": true,
"latedef": true,
"newcap": true,
"noarg": true,
"sub": true,
"undef": true,
"unused": true,
"boss": true,
"eqnull": true,
2014-02-28 13:47:16 +08:00
"node": true,
"globals": [
2014-02-28 13:47:16 +08:00
"Adaptor",
"Cylon",
"CylonConfig",
"Driver",
"DigitalPin",
"Logger",
"BasicLogger",
"NullLogger",
"Loopback",
"Ping",
"Robot",
"TestDriver",
"sinon",
"subclass",
"proxyTestStubs",
2014-03-08 15:33:59 +08:00
"proxyFunctionsToObject",
"every",
"hasProp",
"bind"
2014-02-28 13:47:16 +08:00
]
2013-10-18 14:55:48 +08:00
}