-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
209067c
commit dd32c40
Showing
4 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"version": "0.2", | ||
"language": "en", | ||
"dictionaries": ["custom-dict"], | ||
"dictionaryDefinitions": [ | ||
{ | ||
// The name of the dictionary is used to look it up. | ||
"name": "custom-dict", | ||
// Path to the custom word file. Relative to this `cspell.json` file. | ||
"path": "./custom-dict.txt", | ||
// Some editor extensions will use `addWords` for adding words to your | ||
// personal dictionary. | ||
"addWords": true | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
alumet | ||
mdbook | ||
github | ||
rustc | ||
toolchain | ||
runnable | ||
RAPL | ||
NVIDIA | ||
perf | ||
perf-events | ||
powercap | ||
sysfs | ||
jetson | ||
Eviden | ||
Atos | ||
LIG |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
name: Check | ||
on: [push] | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Spell check | ||
uses: streetsidesoftware/cspell-action@v6 | ||
with: | ||
root: src | ||
incremental_files_only: false | ||
config: .cspell/cspell.json | ||
files: "**/*.md" |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.