mightyiam/eslint-config-love

v62.0.0 : Unexpected top-level property "languageOptions"

vlo-rte opened this issue · 2 comments

Hello,

We have this error when we are tryin to build our project, since the upgrade to version 62.0.0 :

Error: ESLint configuration in .eslintrc.json » eslint-config-love is invalid:
- Unexpected top-level property "languageOptions".

Do you know what we have to do to solve that please ?
Thanks for your help.

Here is our file .eslintrc.json :

{
    "env": {
        "es2021": true,
        "node": true
    },
    "extends": ["love", "plugin:prettier/recommended"],
    "parserOptions": {
        "ecmaVersion": "latest",
        "sourceType": "module"
    },

    "ignorePatterns": ["src/common/**/*"],
    "rules": {
        "@typescript-eslint/consistent-type-imports": "off"
    }
}

@thibeauv53 it seems to work ! Thanks for your help.