First iteration of a file manager
This commit is contained in:
parent
ac52810ef6
commit
2e32df98ea
8 changed files with 169 additions and 28 deletions
|
@ -8,6 +8,7 @@ env:
|
|||
es6: true
|
||||
plugins:
|
||||
- "@typescript-eslint"
|
||||
- "react-hooks"
|
||||
extends:
|
||||
- "standard"
|
||||
- "plugin:@typescript-eslint/recommended"
|
||||
|
@ -20,6 +21,10 @@ rules:
|
|||
comma-dangle:
|
||||
- error
|
||||
- always-multiline
|
||||
"react-hooks/rules-of-hooks":
|
||||
- error
|
||||
"react-hooks/exhaustive-deps":
|
||||
- warn
|
||||
"@typescript-eslint/explicit-function-return-type": 0
|
||||
"@typescript-eslint/explicit-member-accessibility": 0
|
||||
"@typescript-eslint/no-unused-vars": 0
|
||||
|
|
Reference in a new issue