atom-linter-xo icon indicating copy to clipboard operation
atom-linter-xo copied to clipboard

Unresponsive UI with linter-xo enabled

Open simonepri opened this issue 6 years ago • 1 comments

If large binaries are present in the package, atom becomes unresponsive with linter-xo enabled. Adding the incriminated folders to the ignores section didn't solve the problem.

version: linter-xo 0.23.1 & xo 0.18.2

.gitignore image

XO configurations in package.json: image

The bin folder is 4GB

simonepri avatar Jul 14 '17 20:07 simonepri

Changing:

"ignores": [
  "bin"
]

to:

"ignores": [
  "bin/**"
]

solved the problem.

It makes sense to you to add a little note about the needs of globs for ignores here?

simonepri avatar Jul 15 '17 08:07 simonepri