Created Mon Jun, 24 2024 at 09:53PM

In sublime, open the user preference settings for SublimeLinter. Then add the following ignore clauses for the errors you want to silence globally.

{
    "lint_mode": "save",
    "debug": true,
    // place ignore in ~/.config/pycodestyle

    "linters": {
        "pyflakes": {
            "executable": "/opt/homebrew/bin/pyflakes",
        },
        "pylint": {
            "executable": "/opt/homebrew/bin/pylint",
            "args": ["--disable=E0401,E501,C0301"],
        },
        "pycodestyle": {
            "ignore": ["E501","E0401","C0301"],
        }
    }
}