Remove eslint-plugin-prefer-object-spread dependency (#162439)

Remove the `eslint-plugin-prefer-object-spread` dependency as the
`prefer-object-spread` rule has been part of ESLint since v5
This commit is contained in:
Thomas Watson 2023-07-25 10:04:44 +02:00 committed by GitHub
parent 08c8b3d7ff
commit a79e9c7374
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 5 additions and 13 deletions

View file

@ -15,7 +15,6 @@ module.exports = {
'@babel',
'import',
'no-unsanitized',
'prefer-object-spread',
],
env: {
@ -94,7 +93,7 @@ module.exports = {
'import/no-duplicates': 'error',
'import/no-dynamic-require': 'error',
'prefer-object-spread/prefer-object-spread': 'error',
'prefer-object-spread': 'error',
}
},
]