mirror of
https://github.com/BurntSushi/ripgrep.git
synced 2025-05-19 01:30:21 -07:00
ignore/types: add 'graphql' type
GraphQL file extensions: .graphql and .graphqls (schema) We could also add `.gql`, but perhaps it's less correct to do so. We'll start conservatively here, and we can always add `.gql` later. Closes #2439, Closes #2508
This commit is contained in:
parent
da8ecddce9
commit
96cfc0ed13
@ -4,7 +4,7 @@ Unreleased changes. Release notes have not yet been written.
|
|||||||
|
|
||||||
Feature enhancements:
|
Feature enhancements:
|
||||||
|
|
||||||
* Added or improved file type filtering for Fuchsia
|
* Added or improved file type filtering for Fuchsia, GraphQL
|
||||||
|
|
||||||
Bug fixes:
|
Bug fixes:
|
||||||
|
|
||||||
|
@ -85,6 +85,7 @@ pub const DEFAULT_TYPES: &[(&str, &[&str])] = &[
|
|||||||
("gn", &["*.gn", "*.gni"]),
|
("gn", &["*.gn", "*.gni"]),
|
||||||
("go", &["*.go"]),
|
("go", &["*.go"]),
|
||||||
("gradle", &["*.gradle"]),
|
("gradle", &["*.gradle"]),
|
||||||
|
("graphql", &["*.graphql", "*.graphqls"]),
|
||||||
("groovy", &["*.groovy", "*.gradle"]),
|
("groovy", &["*.groovy", "*.gradle"]),
|
||||||
("gzip", &["*.gz", "*.tgz"]),
|
("gzip", &["*.gz", "*.tgz"]),
|
||||||
("h", &["*.h", "*.hh", "*.hpp"]),
|
("h", &["*.h", "*.hh", "*.hpp"]),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user