Ghost/ghost/nql-filter-expansions/.eslintrc.js
Daniel Lockyer b0cf1f949a Switched TypeScript eslint config to custom plugin
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
2023-07-25 16:12:35 +02:00

7 lines
93 B
JavaScript

module.exports = {
plugins: ['ghost'],
extends: [
'plugin:ghost/ts'
]
};