2017-05-29 21:50:03 +03:00
|
|
|
/* eslint-env node */
|
2016-10-14 13:23:51 +03:00
|
|
|
module.exports = {
|
|
|
|
root: true,
|
2017-05-29 21:50:03 +03:00
|
|
|
plugins: [
|
2018-01-05 18:38:23 +03:00
|
|
|
'ghost'
|
|
|
|
],
|
|
|
|
extends: [
|
|
|
|
'plugin:ghost/ember'
|
2017-05-29 21:50:03 +03:00
|
|
|
],
|
2016-10-14 13:23:51 +03:00
|
|
|
rules: {
|
2018-01-05 18:38:23 +03:00
|
|
|
// disable linting of `this.get` until there's a reliable autofix
|
|
|
|
'ghost/ember/use-ember-get-and-set': 'off'
|
2016-10-14 13:23:51 +03:00
|
|
|
}
|
|
|
|
};
|