Updated eslint ecma version to 2020

- It's time, we want to be able to use more modern features, and now we're on node 14 min this makes sense
- @TODO: do this in eslint-plugin-ghost and add new rules to guard the new features
This commit is contained in:
Hannah Wolfe 2022-05-10 20:15:25 +01:00
parent 1c7d4e49c5
commit bb1a5707d8
No known key found for this signature in database
GPG Key ID: AB586C3B5AE5C037

View File

@ -5,6 +5,9 @@ module.exports = {
es6: true,
node: true
},
parserOptions: {
ecmaVersion: 2020
},
plugins: ['ghost'],
extends: [
'plugin:ghost/node'