Ghost/ghost/in-memory-repository/.eslintrc.js

12 lines
266 B
JavaScript
Raw Normal View History

module.exports = {
parser: '@typescript-eslint/parser',
plugins: ['ghost', '@typescript-eslint'],
extends: [
'plugin:ghost/node'
],
rules: {
'no-unused-vars': 'off',
'@typescript-eslint/no-unused-vars': ['error']
}
};