frontend tests, circleci

This commit is contained in:
2020-10-11 19:16:09 +03:00
committed by Stepan Usatiuk
parent 210113bd6d
commit b5a9a54883
13 changed files with 790 additions and 4 deletions

View File

@@ -23,7 +23,8 @@
"plugin:react/recommended"
],
"env": {
"browser": true
"browser": true,
"node": true
},
"parserOptions": {
"ecmaFeatures": {
@@ -49,6 +50,9 @@
}
},
"rules": {
"@typescript-eslint/require-await": "warn"
"@typescript-eslint/require-await": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-call": "off"
}
}