Skip to content

Commit

Permalink
Merge pull request #41 from iden3/feat/spellchecker
Browse files Browse the repository at this point in the history
add spellchecker
  • Loading branch information
vmidyllic authored Sep 10, 2024
2 parents 5083169 + e4fd799 commit 47e5763
Show file tree
Hide file tree
Showing 7 changed files with 1,465 additions and 1,288 deletions.
3 changes: 0 additions & 3 deletions .eslintrc

This file was deleted.

31 changes: 31 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
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: [
'idid',
'subdelim',
'genesistest',
'dupl',
'supa',
'Unmarshal',
'genesistes',
'changedgenesis',
'serv',
'pchar',
'idstring',
'idchar'
]
}
}
]
}
};
Loading

0 comments on commit 47e5763

Please sign in to comment.