Ghost/ghost/database-info/.eslintrc.js
Daniel Lockyer 70ecba06ca Added @trghost/database-info package
refs https://github.com/TryGhost/Toolbox/issues/175

- this library is a small utility around `knex` that returns info on the
  database used - particularly, the version used
- this will initially be used within Ghost but it can be extended to
  other databases and projects if needed
2022-01-18 09:06:44 +00:00

7 lines
95 B
JavaScript

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