Skip to content

Commit 249aecb

Browse files
committed
wip
1 parent 03f3020 commit 249aecb

Some content is hidden

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

70 files changed

+9015
-9599
lines changed

.eslintrc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ module.exports = {
3030
'@typescript-eslint/no-explicit-any': 'off',
3131
'@typescript-eslint/no-empty-function': 'off',
3232
'@typescript-eslint/no-non-null-assertion': 'off',
33-
'@typescript-eslint/no-unused-vars': 'off',
33+
'@typescript-eslint/no-unused-vars': 'error',
3434
'import/first': 'error',
3535
'import/no-duplicates': 'error',
3636
'simple-import-sort/imports': 'error',

.prettierrc.js

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@ module.exports = {
22
semi: true,
33
trailingComma: 'all',
44
singleQuote: true,
5-
printWidth: 90,
6-
tabWidth: 2,
7-
bracketSameLine: true,
8-
bracketSpacing: true
5+
printWidth: 120,
6+
arrowParens: 'always',
7+
tabWidth: 4,
8+
useTabs: false,
9+
bracketSameLine: false,
10+
bracketSpacing: true,
11+
parser: 'typescript'
912
}

0 commit comments

Comments
 (0)