Ghost/ghost/magic-link/test/.eslintrc.js
Fabien O'Carroll fa54dc569e Created @tryghost/magic-link module (#50)
* slimer create magic-link

Created the initial magic-link project

* Added usage section to README

* Installed types and deps for magic-link

* Added tsconfig.json

* Initial commit for magic-link module

* Renamed hello.test.js -> index.test.js

* Added initial basic test

* Removed test util directory

* Updated ecmaVersion for test eslint parserOptions

* Added tests for MagicLink

* Added language to README usage codeblock

* Updated sendMagicLink to return SentMessageInfo

* Updated README

* Updated README usage example

* Fixed types
2019-09-03 11:07:03 +08:00

10 lines
150 B
JavaScript

module.exports = {
parserOptions: {
ecmaVersion: 2017
},
plugins: ['ghost'],
extends: [
'plugin:ghost/test',
]
};