keyserver/.jshintrc

28 lines
481 B
Plaintext
Raw Normal View History

2016-05-25 14:13:49 +00:00
{
"strict": true,
"node": true,
"nonew": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"newcap": true,
"regexp": true,
"evil": true,
"eqnull": true,
"expr": true,
"undef": true,
"unused": true,
"esnext": true,
"globals": {
2017-01-21 11:30:26 +00:00
"expect": true,
"sinon": true,
2016-05-25 14:13:49 +00:00
"describe" : true,
"it" : true,
"before" : true,
"beforeEach" : true,
"after" : true,
"afterEach" : true,
"jQuery" : true
2016-05-25 14:13:49 +00:00
}
}