b0cf1f949a
refs https://github.com/TryGhost/DevOps/issues/50 - this switches the .eslint configs from `node` to `ts`, which is a new config to support eslint for TypeScript - also makes minor changes to adhere to these new rules
7 lines
93 B
JavaScript
7 lines
93 B
JavaScript
module.exports = {
|
|
plugins: ['ghost'],
|
|
extends: [
|
|
'plugin:ghost/ts'
|
|
]
|
|
};
|