Skip to content

Commit bce1fce

Browse files
committed
Add spell checker
1 parent 2ae48dc commit bce1fce

3 files changed

Lines changed: 26 additions & 1 deletion

File tree

.pre-commit-config.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,9 @@ repos:
3232
rev: v1.6.1
3333
hooks:
3434
- id: mypy
35+
36+
- repo: https://github.com/streetsidesoftware/cspell-cli
37+
rev: v7.3.2
38+
hooks:
39+
- id: cspell
40+
files: docs/(.+).md|README.md

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
This repository contains supplementary code for the paper
55
> Finsberg, H., Dokken, J. 2022.
6-
> Title of paper, Journal of blabla, volume, page, url
6+
> Title of paper, Journal of ..., volume, page, url
77
88

99
## Abstract

cspell.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"version": "0.2",
3+
"ignorePaths": [],
4+
"dictionaryDefinitions": [],
5+
"dictionaries": [],
6+
"words": [
7+
"docname",
8+
"docnames",
9+
"Dokken",
10+
"Finsberg",
11+
"fitzhugh",
12+
"nagumo",
13+
"postprocess",
14+
"scientificcomputing",
15+
"zenodo"
16+
],
17+
"ignoreWords": [],
18+
"import": []
19+
}

0 commit comments

Comments
 (0)