switch to eslint

move tests to src/, because otherwise import plugin doesn't work
This commit is contained in:
2020-08-14 15:45:53 +03:00
parent 820c80d4ad
commit f2da923977
8 changed files with 153 additions and 23 deletions

6
frontend/.eslintrc.js Normal file
View File

@@ -0,0 +1,6 @@
module.exports = {
plugins: ["jest"],
extends: [
'plugin:jest/recommended',
],
};