added eslint, some cleanup and fetch in english

This commit is contained in:
2020-05-24 21:28:05 +03:00
parent 8c5fba8788
commit 1b22ac4ceb
8 changed files with 1312 additions and 36 deletions

11
.eslintrc.js Normal file
View File

@@ -0,0 +1,11 @@
module.exports = {
parser: 'babel-eslint',
parserOptions: {
ecmaVersion: 2019,
sourceType: 'module',
},
extends: ['airbnb'],
rules: {
'lines-between-class-members': 0
}
};