This commit is contained in:
2020-05-25 16:07:30 +03:00
parent 0753359f07
commit 13971100cf
55 changed files with 32279 additions and 6964 deletions

12
api/.eslintrc.js Normal file
View File

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