Skip to content

Commit 6905857

Browse files
committedJan 15, 2024
Check with eslint
1 parent f70e883 commit 6905857

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+222
-282
lines changed
 

‎.eslintrc.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ rules:
3434
arguments: 2
3535
}
3636
}]
37+
'@typescript-eslint/consistent-type-imports': error
38+
'@typescript-eslint/no-unused-vars': [error, {vars: all, args: none}]
3739
overrides:
3840
- files: [ "examples/*.js" ]
3941
rules:

‎.gitignore

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
/.build/
2-
/dist/
3-
/node_modules/
2+
/lib/
3+
/apidoc/
4+
dist/
5+
node_modules/
46
/examples/example-list.js
57
/compilation-stats.json
68
/*.zip
79
*.swp
8-
/out
9-
/types
10+
/*.tgz

0 commit comments

Comments
 (0)