Skip to content

Commit

Permalink
Load data from flat file to mongo db collections
Browse files Browse the repository at this point in the history
  • Loading branch information
rprotsyk committed Feb 15, 2020
1 parent b69ba7f commit 5f988f5
Show file tree
Hide file tree
Showing 39 changed files with 12,148 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
sourceType: 'module',
},
plugins: ['@typescript-eslint/eslint-plugin'],
extends: [
'plugin:@typescript-eslint/eslint-recommended',
'plugin:@typescript-eslint/recommended',
'prettier',
'prettier/@typescript-eslint',
],
root: true,
env: {
node: true,
jest: true,
},
rules: {
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/no-explicit-any': 'off',
},
};
Loading

0 comments on commit 5f988f5

Please sign in to comment.