Skip to content

Commit

Permalink
Merge branch 'main' into non-nullable-type-assertion-style
Browse files Browse the repository at this point in the history
  • Loading branch information
dimaMachina committed May 27, 2023
2 parents 27d5f2b + 84aaeae commit 8abf554
Show file tree
Hide file tree
Showing 14 changed files with 1,208 additions and 4,556 deletions.
605 changes: 319 additions & 286 deletions .eslintrc.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ yarn-1.18.0.js
.netlify

examples/*/yarn.lock
package-lock.json
.eslintcache

vite.config.d.ts
Expand Down
26 changes: 13 additions & 13 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,20 +39,20 @@ You will need to include a type prefix for all commit messages. For example:
[a list of type prefixes](https://github.com/conventional-changelog/commitlint/tree/master/%40commitlint/config-conventional#type-enum)
is available:

```js
```json
[
'build',
'ci',
'chore',
'docs',
'feat',
'fix',
'perf',
'refactor',
'revert',
'style',
'test',
];
"build",
"ci",
"chore",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test"
]
```

of these, `fix` and `feat` can trigger patch and minor version releases,
Expand Down
2 changes: 1 addition & 1 deletion docs/migration/graphiql-2.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ function InsideContext() {

useEffect(() => {
const query = queryEditor.getValue();
}, []);
}, [queryEditor]);

return <GraphiQLInterface />;
}
Expand Down
Loading

0 comments on commit 8abf554

Please sign in to comment.