4
votes

Currently my client-side project is build by webpack. Linting the project is part of the build process. All lint warnings/errors in the project are displayed in the console.

When I open a file in Atom, the warnings in that file are shown. But only the warnings of all open files can be displayed. I want to see all warnings in the whole project so I can click on them and solve them quickly.

I was wondering if there is such a solution in Atom. Any suggestions?

I'm using the following Atom packages:

And the following npm package:

Thanks!

1

1 Answers

3
votes

It is not supported to lint the whole project with linter-eslint.

But you can use atom-terminal-panel to manually lint the whole project with eslint. The atom-terminal-panel will display the eslint errors/warnigns with clickable file links.