We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
_build
Tried setting excluded in .credo.exs with **/_build/ but it didn't work. _build folders in apps/ folders are still being evaluated.
excluded
.credo.exs
**/_build/
apps/
%{ configs: [ %{ name: "default", files: %{ included: ["lib/", "src/", "web/", "apps/"], excluded: ["**/_build/"] }, ...
The text was updated successfully, but these errors were encountered:
Just hit this as well, it also seems to be doing apps/*/deps.
apps/*/deps
Strangely I have credo in a project at work that doesn't behave this way and I have no idea why.
Sorry, something went wrong.
Fix problems with Sources and umbrella apps
0ab4e60
Fixes #44
This was released as part of v0.4.0-beta1. Please report any further issues you might find.
v0.4.0-beta1
@rrrene thanks, going with v0.4.0-beta1 and changing the excluded configuration as suggested by the commit above fixes the issue.
@dpehrson The following updated config works correctly now. :)
%{ configs: [ %{ name: "default", files: %{ included: ["lib/", "src/", "web/", "apps/"], excluded: [~r"/_build/", ~r"/deps/"] }, ...
@seantanly @dpehrson Just to be clear, you don't have to change your config with v0.4.0-beta1 since the snippet you provided is now part of the default config 💛 👍
rrrene
No branches or pull requests
Tried setting
excluded
in.credo.exs
with**/_build/
but it didn't work._build
folders inapps/
folders are still being evaluated.The text was updated successfully, but these errors were encountered: