For instance,
If I have a .styluaignore file that looks like:
path/
This will check the file:
stylua -c path/to/file.lua
But this would not:
stylua -c .
As an alternative, I can do
stylua -g path/to/file.lua -- .
But then I'm doing a full directory scan on each call.
For instance,
If I have a
.styluaignorefile that looks like:path/This will check the file:
stylua -c path/to/file.luaBut this would not:
stylua -c .As an alternative, I can do
stylua -g path/to/file.lua -- .But then I'm doing a full directory scan on each call.