Ghost/ghost/admin/.eslintrc.js

27 lines
617 B
JavaScript
Raw Normal View History

/* eslint-env node */
module.exports = {
root: true,
2019-12-13 18:15:06 +03:00
parser: 'babel-eslint',
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
ecmaFeatures: {
legacyDecorators: true
}
},
plugins: [
'ghost'
],
extends: [
'plugin:ghost/ember'
],
rules: {
// disable linting of `this.get` until there's a reliable autofix
'ghost/ember/use-ember-get-and-set': 'off',
// disable linting of mixins until we migrate away
'ghost/ember/no-mixins': 'off',
'ghost/ember/no-new-mixins': 'off'
}
};