ESLint showing errors in Brackets

2020-05-11 04:37发布

问题:

My javascript code is working perfectly except ESLint is showing that I have errors, such as:

"ERROR: 'myFunction' is defined but never used. [no-unused-vars]"

and

"ERROR: 'document' is not defined. [no-undef]"

This is only a problem because I am using an external js file. What can I put into "brackets.json" or "defaultPreferences.json" to stop these ESLint error markers/notifications from appearing?

Any help is much appreciated.

回答1:

I had the same problem: create a package.json file a the root of your project and put you ESLint configuration in a eslintConfig object as defined in the ESLint documentation:

{
    "eslintConfig": {
        "globals": {
            "Vue": true
        },
        "env": {
            "browser": true,
            "es6": true,
            "jquery": true
        },
        "extends": [
            "eslint:recommended"
        ],
        "parserOptions": {
            "sourceType": "module"
        },
        "rules": {
            "no-console": 0,
            "indent": [
                "error",
                4
            ],
            "linebreak-style": [
                "error",
                "unix"
            ],
            "quotes": [
                "error",
                "double"
            ]
        }
    }
}

Good coding!