Skip to content

Commit

Permalink
add spellchecker
Browse files Browse the repository at this point in the history
  • Loading branch information
volodymyr-basiuk committed Sep 9, 2024
1 parent 6c22508 commit d21d336
Show file tree
Hide file tree
Showing 4 changed files with 958 additions and 14 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: ['dtau', 'escalar', 'pleft', 'pright']
}
}
]
}
};
Loading

0 comments on commit d21d336

Please sign in to comment.