mirror of
https://github.com/cheat/cheat.git
synced 2024-11-01 13:41:01 +01:00
55b18b4897
commit 95479c8ad744db48386a5c78e54ef8da80e9120b Author: Chris Lane <chris@chris-allen-lane.com> Date: Wed Apr 28 12:26:32 2021 -0400 chore(version): bump version to 4.2.1 commit6956f51cae
Author: Chris Lane <chris@chris-allen-lane.com> Date: Wed Apr 28 12:24:21 2021 -0400 fix(Makefile): `vendor-update` Update the `vendor-update` build target to run `go mod vendor` after updating dependencies. commit0aca411279
Author: Chris Lane <chris@chris-allen-lane.com> Date: Wed Apr 28 12:23:24 2021 -0400 chore(deps): update dependencies commite847956b02
Author: Chris Lane <chris@chris-allen-lane.com> Date: Wed Apr 28 08:26:51 2021 -0400 chore(deps): build updates - Upgrade `go` to `1.16.3` - Attempt to fix build errors regarding dependencies
50 lines
1.8 KiB
Go
50 lines
1.8 KiB
Go
package g
|
|
|
|
import (
|
|
. "github.com/alecthomas/chroma" // nolint
|
|
"github.com/alecthomas/chroma/lexers/internal"
|
|
)
|
|
|
|
// Go lexer.
|
|
var Graphql = internal.Register(MustNewLazyLexer(
|
|
&Config{
|
|
Name: "GraphQL",
|
|
Aliases: []string{"graphql", "graphqls", "gql"},
|
|
Filenames: []string{"*.graphql", "*.graphqls"},
|
|
},
|
|
graphqlRules,
|
|
))
|
|
|
|
func graphqlRules() Rules {
|
|
return Rules{
|
|
"root": {
|
|
{`(query|mutation|subscription|fragment|scalar|implements|interface|union|enum|input|type)`, KeywordDeclaration, Push("type")},
|
|
{`(on|extend|schema|directive|\.\.\.)`, KeywordDeclaration, nil},
|
|
{`(QUERY|MUTATION|SUBSCRIPTION|FIELD|FRAGMENT_DEFINITION|FRAGMENT_SPREAD|INLINE_FRAGMENT|SCHEMA|SCALAR|OBJECT|FIELD_DEFINITION|ARGUMENT_DEFINITION|INTERFACE|UNION|ENUM|ENUM_VALUE|INPUT_OBJECT|INPUT_FIELD_DEFINITION)\b`, KeywordConstant, nil},
|
|
{`[^\W\d]\w*`, NameProperty, nil},
|
|
{`\@\w+`, NameDecorator, nil},
|
|
{`:`, Punctuation, Push("type")},
|
|
{`[\(\)\{\}\[\],!\|=]`, Punctuation, nil},
|
|
{`\$\w+`, NameVariable, nil},
|
|
{`\d+i`, LiteralNumber, nil},
|
|
{`\d+\.\d*([Ee][-+]\d+)?i`, LiteralNumber, nil},
|
|
{`\.\d+([Ee][-+]\d+)?i`, LiteralNumber, nil},
|
|
{`\d+[Ee][-+]\d+i`, LiteralNumber, nil},
|
|
{`\d+(\.\d+[eE][+\-]?\d+|\.\d*|[eE][+\-]?\d+)`, LiteralNumberFloat, nil},
|
|
{`\.\d+([eE][+\-]?\d+)?`, LiteralNumberFloat, nil},
|
|
{`(0|[1-9][0-9]*)`, LiteralNumberInteger, nil},
|
|
{`"""[\x00-\x7F]*?"""`, LiteralString, nil},
|
|
{`"(\\["\\abfnrtv]|\\x[0-9a-fA-F]{2}|\\[0-7]{1,3}|\\u[0-9a-fA-F]{4}|\\U[0-9a-fA-F]{8}|[^\\])"`, LiteralStringChar, nil},
|
|
{`"(\\\\|\\"|[^"])*"`, LiteralString, nil},
|
|
{`"(true|false|null)*"`, Literal, nil},
|
|
{`[\r\n\s]+`, Whitespace, nil},
|
|
{`#[^\r\n]*`, Comment, nil},
|
|
},
|
|
// Treats the next word as a class, default rules it would be a property
|
|
"type": {
|
|
{`[^\W\d]\w*`, NameClass, Pop(1)},
|
|
Include("root"),
|
|
},
|
|
}
|
|
}
|