Skip to content

Commit 436164c

Browse files
committed
more
1 parent 114d57e commit 436164c

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

website/content/docs/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This project integrates GraphQL and ESLint, for a better developer experience.
1010
<video autoPlay loop muted playsInline>
1111
<source src="/demo.mp4" type="video/mp4" />
1212
</video>
13-
<figcaption className="text-sm text-center italic mt-2">Demo GraphQL-ESLint in VSCode</figcaption>
13+
<figcaption className="mt-2 text-center text-sm italic">Demo GraphQL-ESLint in VSCode</figcaption>
1414
</figure>
1515

1616
## Features

website/content/docs/usage/index.mdx

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ export default [
6363

6464
### Lint GraphQL Definitions in Code Files <sup>_(Optional)_</sup>[#lint-in-code-files]
6565

66-
If you're defining GraphQL schemas or operations directly within code files (e.g., `.js`, `.jsx`, `.ts`, `.tsx` files), check out
67-
[the usage with `.js`/`.jsx`](./usage/js) files.
66+
If you're defining GraphQL schemas or operations directly within code files (e.g., `.js`, `.jsx`,
67+
`.ts`, `.tsx` files), check out [the usage with `.js`/`.jsx`](./usage/js) files.
6868

6969
### Providing GraphQL Schema <sup>_(Optional)_</sup>[#providing-schema]
7070

@@ -161,7 +161,8 @@ To workaround that, we allow you to provide additional information on your Graph
161161
making it available for rules while doing the actual linting.
162162

163163
The GraphQL ESLint plugin integrates seamlessly with
164-
[GraphQL Config](https://the-guild.dev/graphql/config), which it uses to automatically load your sibling operations and fragments.
164+
[GraphQL Config](https://the-guild.dev/graphql/config), which it uses to automatically load your
165+
sibling operations and fragments.
165166

166167
> [!TIP]
167168
>

website/tailwind.config.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,8 @@ import tailwindConfig from '@theguild/tailwind-config';
33

44
export default {
55
...tailwindConfig,
6-
content: [
7-
...tailwindConfig.content,
8-
'./content/**/*.{md,mdx}'
9-
],
6+
// todo: add to shared config
7+
content: [...tailwindConfig.content, './content/**/*.{md,mdx}'],
108
// @ts-expect-error -- fixme
119
plugins: [tailwindRadix()],
1210
};

0 commit comments

Comments
 (0)