Should the [qunit/no-arrow-tests](https://github.com/platinumazure/eslint-plugin-qunit/blob/master/docs/rules/no-arrow-tests.md) rule also catch modules with arrow functions? Or should we have a new separate rule `no-arrow-modules`? Bad: ```js module('my module', (hooks) => { // ... }); ``` Good: ```js module('my module', function(hooks) { // ... });