This commit is contained in:
2020-10-10 13:52:57 +03:00
committed by Stepan Usatiuk
commit 442e882b72
24 changed files with 18262 additions and 0 deletions

38
frontend/.eslintrc.json Normal file
View File

@@ -0,0 +1,38 @@
{
"plugins": [
"jest",
"react",
"react-hooks",
"html"
],
"extends": [
"plugin:jest/recommended",
"plugin:react-hooks/recommended",
"plugin:react/recommended"
],
"env": {
"browser": true
},
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"project": "./tsconfig.json"
},
"settings": {
"import/parsers": {
"@typescript-eslint/parser": [
".ts",
".tsx"
]
},
"import/resolver": {
"typescript": {
"alwaysTryTypes": true,
"project": [
"./tsconfig.json"
]
}
}
}
}