2023-06-23 14:22:01 +03:00
|
|
|
module.exports = {
|
2023-07-25 16:05:21 +03:00
|
|
|
plugins: ['ghost'],
|
2023-06-23 14:22:01 +03:00
|
|
|
extends: [
|
2023-07-25 16:05:21 +03:00
|
|
|
'plugin:ghost/ts'
|
2023-06-23 14:22:01 +03:00
|
|
|
],
|
|
|
|
rules: {
|
|
|
|
'no-unused-vars': 'off',
|
|
|
|
'@typescript-eslint/no-unused-vars': ['error'],
|
|
|
|
'no-shadow': 'off',
|
|
|
|
'@typescript-eslint/no-shadow': ['error']
|
|
|
|
}
|
|
|
|
};
|