mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 13:54:35 +03:00
12 lines
266 B
JavaScript
12 lines
266 B
JavaScript
|
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']
|
||
|
}
|
||
|
};
|