Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into refactor/config-types
Browse files Browse the repository at this point in the history
  • Loading branch information
meskill committed May 3, 2024
2 parents 441cf53 + a58f3d5 commit 58fc090
Show file tree
Hide file tree
Showing 150 changed files with 1,057 additions and 1,417 deletions.
3 changes: 2 additions & 1 deletion .codespellignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ unit
jsonplaceholder
crate
implementor
implementors
implementors
alo
5 changes: 4 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{
"image": "mcr.microsoft.com/devcontainers/universal:2",
"features": {
"ghcr.io/devcontainers/features/rust:1": {}
"ghcr.io/devcontainers/features/rust:1": {
"version": "1.75",
"profile": "default"
}
}
}
30 changes: 30 additions & 0 deletions .github/workflows/spell-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Spell check

on:
push:
branches:
- "**"
paths:
- "docs/**"
- "**.md"
- "**.rs"
pull_request:
branches: [main]
types: [opened, reopened, synchronize]
paths:
- "docs/**"
- "**.md"
- "**.rs"

jobs:
check_spelling:
name: Check spelling
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: codespell-project/actions-codespell@v2
with:
skip: ".git,*/package.json,*/package-lock.json,*.lock,.github,.vscode,assets, *.snap"
ignore_words_file: .codespellignore
check_hidden: false
24 changes: 0 additions & 24 deletions .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,30 +5,6 @@
"tabWidth": 2,
"bracketSpacing": false,
"overrides": [
{
"files": [
"add-field-many-list.graphql",
"add-field-many-list.md",
"add-field-many.graphql",
"add-field-many.md",
"inline-many.graphql",
"inline-many.md",
"inline-many-list.graphql",
"inline-many-list.md",
"test-grpc.graphql",
"test-add-link-to-empty-config.graphql",
"test-add-link-to-empty-config.md",
"test-grpc.md",
"test-expr-success.graphql",
"test-expr-success.md",
"omit-many.graphql",
"omit-many.md",
"auth.md"
],
"options": {
"printWidth": 210
}
},
{
"files": ["devcontainer.json"],
"options": {
Expand Down
164 changes: 6 additions & 158 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 58fc090

Please sign in to comment.