Skip to content

Commit 8c3806c

Browse files
committed
typescript issues fixed, now onto actual testing
1 parent 007d4e6 commit 8c3806c

File tree

88 files changed

+19333
-18216
lines changed

Some content is hidden

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

88 files changed

+19333
-18216
lines changed

Diff for: .prettierrc

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"semi": true,
3+
"trailingComma": "all",
4+
"singleQuote": true,
5+
"printWidth": 120,
6+
"tabWidth": 2
7+
}

Diff for: eslintrc.config.js

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import tsParser from '@typescript-eslint/parser';
2+
import tsPlugin from '@typescript-eslint/eslint-plugin';
3+
4+
export default [
5+
{
6+
languageOptions: {
7+
parser: tsParser,
8+
parserOptions: {
9+
ecmaVersion: 'latest',
10+
},
11+
},
12+
plugins: {
13+
'@typescript-eslint': tsPlugin,
14+
},
15+
extends: [
16+
'eslint:recommended',
17+
'plugin:@typescript-eslint/recommended',
18+
'prettier'
19+
],
20+
rules: {
21+
'@typescript-eslint/no-explicit-any': 'off',
22+
}
23+
}
24+
];

0 commit comments

Comments
 (0)