Skip to content

Commit c5b60af

Browse files
authored
ES module migration (#50)
* ES module migration * 1.5.0
1 parent 7e255c5 commit c5b60af

File tree

18 files changed

+4520
-2575
lines changed

18 files changed

+4520
-2575
lines changed

.editorconfig

Lines changed: 0 additions & 8 deletions
This file was deleted.

.eslintignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

.eslintrc.js

Lines changed: 0 additions & 18 deletions
This file was deleted.

eslint.config.mjs

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import * as cspell from '@iden3/eslint-config/cspell.js';
2+
3+
import iden3Config from '@iden3/eslint-config';
4+
5+
export default {
6+
...iden3Config,
7+
rules:{
8+
'@cspell/spellchecker': [
9+
1,
10+
{
11+
...cspell.spellcheckerRule,
12+
cspell: {
13+
...cspell.cspellConfig,
14+
ignoreWords: ['Elems']
15+
}
16+
}
17+
]
18+
}
19+
};

0 commit comments

Comments
 (0)