Remove trailing commas from .eslintrc.js files
- the upcoming eslint update flags errors for trailing commas, so this commits tidies that up
This commit is contained in:
parent
a3a62baa5a
commit
3978858b83
@ -1,6 +1,6 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
plugins: ['ghost'],
|
plugins: ['ghost'],
|
||||||
extends: [
|
extends: [
|
||||||
'plugin:ghost/node',
|
'plugin:ghost/node'
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
plugins: ['ghost'],
|
plugins: ['ghost'],
|
||||||
extends: [
|
extends: [
|
||||||
'plugin:ghost/test',
|
'plugin:ghost/test'
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
plugins: ['ghost'],
|
plugins: ['ghost'],
|
||||||
extends: [
|
extends: [
|
||||||
'plugin:ghost/node',
|
'plugin:ghost/node'
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
plugins: ['ghost'],
|
plugins: ['ghost'],
|
||||||
extends: [
|
extends: [
|
||||||
'plugin:ghost/test',
|
'plugin:ghost/test'
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
plugins: ['ghost'],
|
plugins: ['ghost'],
|
||||||
extends: [
|
extends: [
|
||||||
'plugin:ghost/node',
|
'plugin:ghost/node'
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
plugins: ['ghost'],
|
plugins: ['ghost'],
|
||||||
extends: [
|
extends: [
|
||||||
'plugin:ghost/test',
|
'plugin:ghost/test'
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
plugins: ['ghost'],
|
plugins: ['ghost'],
|
||||||
extends: [
|
extends: [
|
||||||
'plugin:ghost/node',
|
'plugin:ghost/node'
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
plugins: ['ghost'],
|
plugins: ['ghost'],
|
||||||
extends: [
|
extends: [
|
||||||
'plugin:ghost/test',
|
'plugin:ghost/test'
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
plugins: ['ghost'],
|
plugins: ['ghost'],
|
||||||
extends: [
|
extends: [
|
||||||
'plugin:ghost/node',
|
'plugin:ghost/node'
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
plugins: ['ghost'],
|
plugins: ['ghost'],
|
||||||
extends: [
|
extends: [
|
||||||
'plugin:ghost/test',
|
'plugin:ghost/test'
|
||||||
],
|
],
|
||||||
parserOptions: {
|
parserOptions: {
|
||||||
ecmaVersion: 2017
|
ecmaVersion: 2017
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
plugins: ['ghost'],
|
plugins: ['ghost'],
|
||||||
extends: [
|
extends: [
|
||||||
'plugin:ghost/node',
|
'plugin:ghost/node'
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
plugins: ['ghost'],
|
plugins: ['ghost'],
|
||||||
extends: [
|
extends: [
|
||||||
'plugin:ghost/test',
|
'plugin:ghost/test'
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
plugins: ['ghost'],
|
plugins: ['ghost'],
|
||||||
extends: [
|
extends: [
|
||||||
'plugin:ghost/node',
|
'plugin:ghost/node'
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
plugins: ['ghost'],
|
plugins: ['ghost'],
|
||||||
extends: [
|
extends: [
|
||||||
'plugin:ghost/test',
|
'plugin:ghost/test'
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
plugins: ['ghost'],
|
plugins: ['ghost'],
|
||||||
extends: [
|
extends: [
|
||||||
'plugin:ghost/node',
|
'plugin:ghost/node'
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
plugins: ['ghost'],
|
plugins: ['ghost'],
|
||||||
extends: [
|
extends: [
|
||||||
'plugin:ghost/test',
|
'plugin:ghost/test'
|
||||||
],
|
],
|
||||||
parserOptions: {
|
parserOptions: {
|
||||||
ecmaVersion: 2017
|
ecmaVersion: 2017
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
plugins: ['ghost'],
|
plugins: ['ghost'],
|
||||||
extends: [
|
extends: [
|
||||||
'plugin:ghost/node',
|
'plugin:ghost/node'
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
plugins: ['ghost'],
|
plugins: ['ghost'],
|
||||||
extends: [
|
extends: [
|
||||||
'plugin:ghost/test',
|
'plugin:ghost/test'
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
plugins: ['ghost'],
|
plugins: ['ghost'],
|
||||||
extends: [
|
extends: [
|
||||||
'plugin:ghost/node',
|
'plugin:ghost/node'
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
module.exports = {
|
module.exports = {
|
||||||
plugins: ['ghost'],
|
plugins: ['ghost'],
|
||||||
extends: [
|
extends: [
|
||||||
'plugin:ghost/test',
|
'plugin:ghost/test'
|
||||||
]
|
]
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user