We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1a7ffcb + efd091b commit 88a3a27Copy full SHA for 88a3a27
2 files changed
.clangd
@@ -0,0 +1,7 @@
1
+# clangd configuration.
2
+#
3
+# Point clangd at the Meson-generated compile_commands.json so it works
4
+# without a symlink at the repo root. Run `make` (or `meson setup build`)
5
+# once and clangd will pick up per-file flags automatically.
6
+CompileFlags:
7
+ CompilationDatabase: build
.github/workflows/pull_request.yml
@@ -75,8 +75,13 @@ jobs:
75
make pre-push
76
spelling:
77
runs-on: ubuntu-latest
78
- container: vlajos/misspell-fixer
+ container: debian:13
79
steps:
80
- uses: actions/checkout@v4
81
+ - name: install misspell-fixer
82
+ run: |
83
+ apt-get update
84
+ apt-get install -y git
85
+ git clone https://github.com/vlajos/misspell-fixer.git /misspell-fixer
86
- name: run misspell-fixer
87
run: /misspell-fixer/misspell-fixer -sv .
0 commit comments