Hacker News new | ask | show | jobs
by IgorPartola 3429 days ago
I would love to replace Syntastic with ale, but (1) is there a way to have it just highlight the line with the error instead of using the gutter? And (2) is there a way to get it to use pyflakes instead? pylint is a little too aggressive: it complains about modules it can't import which is by design in my working environment.
3 comments

Alternatively, add the following to your `~/.pylintrc`. Granted pylint just stops checking those particular modules, but it's better than nothing.

    [TYPECHECK]
    ignored-modules = ssl,pyodbc
Install flake8, there's support for mypy, flake8, and pylint. I can't answer the other, but you could always file a feature request.
`let g:ale_linters = { 'python': ['flake8'], }`