5e574946fb
* Update dependency eslint to v7 * Fixed linting errors Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Kevin Ansfield <kevin@lookingsideways.co.uk>
11 lines
191 B
JavaScript
11 lines
191 B
JavaScript
/* eslint-env node */
|
|
module.exports = {
|
|
env: {
|
|
embertest: true,
|
|
mocha: true
|
|
},
|
|
rules: {
|
|
'ghost/ember/no-invalid-debug-function-arguments': 'off'
|
|
}
|
|
};
|