# 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?
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!