Skip to content

Commit

Permalink
Merge pull request #48 from iden3/feat/spellcheck
Browse files Browse the repository at this point in the history
add spellcheck
  • Loading branch information
vmidyllic authored Sep 30, 2024
2 parents e81a4af + 35fea2a commit d898d10
Show file tree
Hide file tree
Showing 8 changed files with 1,310 additions and 1,337 deletions.
3 changes: 0 additions & 3 deletions .eslintrc

This file was deleted.

18 changes: 18 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
const iden3Config = require('@iden3/eslint-config');
const { spellcheckerRule, cspellConfig } = require('@iden3/eslint-config/cspell');

module.exports = {
...iden3Config,
rules: {
'@cspell/spellchecker': [
1,
{
...spellcheckerRule,
cspell: {
...cspellConfig,
ignoreWords: ['Elems']
}
}
]
}
};
Loading

0 comments on commit d898d10

Please sign in to comment.