Ghost/ghost/extract-api-key/.eslintrc.js
Naz b4445cf6e0 Bootstrapped api key extractor package
refs https://github.com/TryGhost/Toolbox/issues/292

- The package is meant to be one stop shop for extraction of any API keys from requests known to Ghost
- To start with it should detect and return keys for Content and Admin APIs for the purposes of api version mismatch handling
2022-05-10 12:37:05 +08:00

7 lines
95 B
JavaScript

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