Skip to content

Commit c477702

Browse files
add spellcheck
1 parent 5016751 commit c477702

File tree

6 files changed

+1492
-1384
lines changed

6 files changed

+1492
-1384
lines changed

.eslintrc

-3
This file was deleted.

.eslintrc.js

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
const iden3Config = require('@iden3/eslint-config');
2+
const { spellcheckerRule, cspellConfig } = require('@iden3/eslint-config/cspell');
3+
4+
module.exports = {
5+
...iden3Config,
6+
rules: {
7+
'@cspell/spellchecker': [
8+
1,
9+
{
10+
...spellcheckerRule,
11+
cspell: {
12+
...cspellConfig,
13+
ignoreWords: ['multigraph', 'kubo']
14+
}
15+
}
16+
]
17+
}
18+
};

0 commit comments

Comments
 (0)