discourse/.eslintrc
Robin Ward 3862036422 REFACTOR: Use imports for sinon and setResolver
I also took the opportunity with this commit to move some test specific
stuff out of `discourse-loader` which is loaded on the front end of the
application. The test module building now happens in the `test_helper`
bundle.
2020-10-09 13:54:54 -04:00

14 lines
242 B
Plaintext

{
"extends": "eslint-config-discourse",
"rules": {
"discourse-ember/global-ember": 2
},
"globals": {
"moduleFor": "off",
"moduleForComponent": "off",
"testStart": "off",
"testDone": "off",
"sinon": "off"
}
}