Skip to content

Commit d41b240

Browse files
authored
Update getting-started.mdx
1 parent 7ef8648 commit d41b240

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

website/src/pages/docs/getting-started.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Start by installing the plugin package, which includes everything you need:
1515
## Configuration
1616

1717
To get started, define an override in your ESLint config to apply this plugin to `.graphql` files.
18-
Add the [rules](/docs/rules) you want applied.
18+
Add the [rules](/rules) you want applied.
1919

2020
<Callout type="error" emoji="🚨">
2121
**Note**: This step is necessary even if you are declaring operations and/or schema in code files.
@@ -75,12 +75,12 @@ your code files.
7575
### Extended Linting Rules with GraphQL Schema
7676

7777
Some rules require an understanding of the entire schema at once. For example,
78-
[no-unreachable-types](https://github.com/B2o5T/graphql-eslint/blob/master/docs/rules/no-unreachable-types.md#no-unreachable-types)
78+
[no-unreachable-types](https://the-guild.dev/graphql/eslint/rules/no-unreachable-types)
7979
checks that all types are reachable by root-level fields.
8080

8181
To use these rules, you'll need to tell ESLint how to identify the entire set of schema definitions.
8282

83-
If you are using [`graphql-config`](https://graphql-config.com), you are good to go.
83+
If you are using [`graphql-config`](https://the-guild.dev/graphql/config), you are good to go.
8484
`graphql-eslint` integrates with it automatically and will use it to load your schema!
8585

8686
Alternatively, you can define `parserOptions.schema` in the `*.graphql` override in your ESLint
@@ -104,7 +104,7 @@ configuration file:
104104
}
105105
```
106106

107-
> You can find a complete [documentation of the `parserOptions` here](docs/parser-options.md).
107+
> You can find a complete [documentation of the `parserOptions` here](/docs/parser-options).
108108
109109
> Some rules require type information to operate, it's marked in the docs for each rule!
110110
@@ -157,7 +157,7 @@ You can also specify specific rules to disable, apply it over the entire file,
157157
`eslint-disable-next-line` or current `eslint-disable-line`.
158158

159159
You can find a list of
160-
[ESLint directives here](https://eslint.org/docs/2.13.1/user-guide/configuring#disabling-rules-with-inline-comments).
160+
[ESLint directives here](https://eslint.org/docs/latest/user-guide/configuring/rules#using-configuration-comments-1).
161161

162162
### VSCode Integration
163163

0 commit comments

Comments
 (0)