You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# The "include" checker will error unless the specified value is include.
[include]
# "src/**/*.py" = "__all__"
# The "exclude" checker will error if the specified value is include.
[exclude]
"**/*.py" = "super-with-arguments"
"**/*.py" = "redefined-outer-name"
☝️ this gives me a "duplicate keys" error...
# The "include" checker will error unless the specified value is include.
[include]
# "src/**/*.py" = "__all__"
# The "exclude" checker will error if the specified value is include.
[exclude]
"**/*.py" = [
"super-with-arguments",
"redefined-outer-name"
]
☝️ and this gives me an error that not-grep is looking for a string, not an array.
I'd be happy to help if the feature needs building, would love to hear what you think the best solution might be. I suspect the second version?
Thanks again for building this CI tool!
The text was updated successfully, but these errors were encountered:
Here's my not-grep.toml:
☝️ this gives me a "duplicate keys" error...
☝️ and this gives me an error that not-grep is looking for a string, not an array.
I'd be happy to help if the feature needs building, would love to hear what you think the best solution might be. I suspect the second version?
Thanks again for building this CI tool!
The text was updated successfully, but these errors were encountered: