-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update Node.js harness * update environments * regenerate test specs * Fix Rule suffix These should match the strings passed into AddRule() * Update metadata for interface implements so covariance check works * Adjust quoting and verbiage to match new test suite expectations Signed-off-by: Steve Coffman <steve@khanacademy.org> * fixed to be starting indent from line 1 * regenerate test specs * fixed UniqueVariableNames validator rule to add the same error only once * fixed ValuesOfCorrectTypeRule test for #181 * fixed UniqueArgumentNames test for #181 * fixed SingleFieldSubscriptions tests for #181 * fixed deviations to ignore NoDeprecatedCustomRule because optional * fixed deviations to ignore NoSchemaIntrospectionCustomRule because optional * fixed KnownDirectives validation for #181 * fixed deviations.yml * fixed FieldsOnCorrectType for #181 * fixed OverlappingFieldsCanBeMergedRule for #181 * fixed ProvidedRequiredArguments for #181 * fixed UniqueVariableNames validator rule to add the same error only once * fixed UniqueArgumentNames test for #181 * fixed SingleFieldSubscriptions tests for #181 * fixed KnownDirectives validation for #181 * fixed FieldsOnCorrectType for #181 * fixed OverlappingFieldsCanBeMergedRule for #181 * fixed ProvidedRequiredArguments for #181 * fixed walk logic for directive * fixed UniqueDirectivesPerLocation for repeatable * fixed KnownTypeNames for #181 * fixed NoUndefinedVariables for #181 * upgrade go version * fixed modules * added interfaces.graphql for 14aecc0 Co-authored-by: vvakame <vvakame+dev@gmail.com> Co-authored-by: Adam Scarr <ascarr@squareup.com> Co-authored-by: Kei Kamikawa <code-hex@users.noreply.github.com>
- Loading branch information
1 parent
25dc9ba
commit f952228
Showing
70 changed files
with
6,606 additions
and
6,252 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
module github.com/vektah/gqlparser/v2 | ||
|
||
go 1.13 | ||
go 1.16 | ||
|
||
require ( | ||
github.com/agnivade/levenshtein v1.0.1 | ||
github.com/andreyvit/diff v0.0.0-20170406064948-c7f18ee00883 | ||
github.com/sergi/go-diff v1.1.0 // indirect | ||
github.com/stretchr/testify v1.4.0 | ||
golang.org/x/tools v0.0.0-20190125232054-d66bd3c5d5a6 | ||
golang.org/x/tools v0.1.9 | ||
gopkg.in/yaml.v2 v2.2.4 | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"plugins": ["@babel/plugin-transform-typescript"], | ||
"presets": [ | ||
"@babel/preset-env", | ||
"@babel/preset-flow" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.