Removed trailing commas from .eslintrc.js

refs https://github.com/TryGhost/Team/issues/879
This commit is contained in:
Fabien O'Carroll 2021-07-14 09:57:01 +01:00
parent 8af799bdc9
commit 6083e4825f
8 changed files with 8 additions and 8 deletions

View File

@ -1,6 +1,6 @@
module.exports = { module.exports = {
plugins: ['ghost'], plugins: ['ghost'],
extends: [ extends: [
'plugin:ghost/node', 'plugin:ghost/node'
] ]
}; };

View File

@ -4,6 +4,6 @@ module.exports = {
}, },
plugins: ['ghost'], plugins: ['ghost'],
extends: [ extends: [
'plugin:ghost/test', 'plugin:ghost/test'
] ]
}; };

View File

@ -1,6 +1,6 @@
module.exports = { module.exports = {
plugins: ['ghost'], plugins: ['ghost'],
extends: [ extends: [
'plugin:ghost/node', 'plugin:ghost/node'
] ]
}; };

View File

@ -1,7 +1,7 @@
module.exports = { module.exports = {
plugins: ['ghost'], plugins: ['ghost'],
extends: [ extends: [
'plugin:ghost/test', 'plugin:ghost/test'
], ],
// TODO: why is this needed for async/await? Check eslint-plugin-ghost // TODO: why is this needed for async/await? Check eslint-plugin-ghost
parserOptions: { parserOptions: {

View File

@ -1,6 +1,6 @@
module.exports = { module.exports = {
plugins: ['ghost'], plugins: ['ghost'],
extends: [ extends: [
'plugin:ghost/node', 'plugin:ghost/node'
] ]
}; };

View File

@ -1,6 +1,6 @@
module.exports = { module.exports = {
plugins: ['ghost'], plugins: ['ghost'],
extends: [ extends: [
'plugin:ghost/test', 'plugin:ghost/test'
] ]
}; };

View File

@ -1,6 +1,6 @@
module.exports = { module.exports = {
plugins: ['ghost'], plugins: ['ghost'],
extends: [ extends: [
'plugin:ghost/node', 'plugin:ghost/node'
] ]
}; };

View File

@ -1,6 +1,6 @@
module.exports = { module.exports = {
plugins: ['ghost'], plugins: ['ghost'],
extends: [ extends: [
'plugin:ghost/test', 'plugin:ghost/test'
] ]
}; };