tenfourfox/browser/extensions/loop/chrome/content/panels/test/.eslintrc
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

16 lines
377 B
Plaintext

{
"ecmaFeatures": {
// since the code here is running only on known versions of
// Firefox, we can use newer ECMAscript features here
"arrowFunctions": true,
"blockBindings": true,
"destructuring": true,
"forOf": true
},
"rules": {
// This is useful for some of the tests, e.g.
// expect(new Foo()).to.Throw(/error/)
"no-new": 0
}
}