11 lines
224 B
JavaScript
11 lines
224 B
JavaScript
module.exports = {
|
|
plugins: ['ghost'],
|
|
extends: [
|
|
'plugin:ghost/test'
|
|
],
|
|
// TODO: why is this needed for async/await? Check eslint-plugin-ghost
|
|
parserOptions: {
|
|
ecmaVersion: 2017
|
|
}
|
|
};
|