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
excluded_patterns
.index.yml
As mentioned in #1827
Let's say we have a file abc.rb that we want to exclude from indexing.
abc.rb
If we try exclude it in index.yml with:
index.yml
excluded_patterns: - "abc.rb"
or
excluded_patterns: - "/abc.rb"
then it will still be indexed. Instead we need to write:
excluded_patterns: - "**/abc.rb"
which is not so obvious, and is different from other exclusion mechanism such as .gitignore.
.gitignore
The text was updated successfully, but these errors were encountered:
This issue is being marked as stale because there was no activity in the last 2 months
Sorry, something went wrong.
@vinistock @st0012 this seems like a bug, right?
(I know we're planning to eliminate the config file, but this would likely also apply to the config settings approach)
Note: Even though we are deprecating .index.yml this may still be an issue for the indexing configuration.
No branches or pull requests
As mentioned in #1827
Let's say we have a file
abc.rb
that we want to exclude from indexing.If we try exclude it in
index.yml
with:or
then it will still be indexed. Instead we need to write:
which is not so obvious, and is different from other exclusion mechanism such as
.gitignore
.The text was updated successfully, but these errors were encountered: