atom-linter-xo
                                
                                 atom-linter-xo copied to clipboard
                                
                                    atom-linter-xo copied to clipboard
                            
                            
                            
                        Unresponsive UI with linter-xo enabled
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

XO configurations in package.json:

The bin folder is 4GB
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?
Closing as Atom is abandoned.