-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DPLT-1076 create node worker to process real time streams (#159)
- Loading branch information
1 parent
4f66ec3
commit c64e862
Showing
23 changed files
with
10,538 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
module.exports = { | ||
parser: '@typescript-eslint/parser', | ||
env: { | ||
es2021: true, | ||
node: true, | ||
}, | ||
overrides: [ | ||
{ | ||
files: ['.eslintrc.js', 'jest.config.js'], | ||
parser: 'espree', | ||
extends: ['standard'], | ||
rules: { | ||
semi: ['error', 'always'], | ||
'comma-dangle': ['error', 'only-multiline'], | ||
}, | ||
}, | ||
{ | ||
files: ['./src/**/*'], | ||
parserOptions: { | ||
project: './tsconfig.json', | ||
}, | ||
extends: [ | ||
'standard-with-typescript', | ||
], | ||
rules: { | ||
'@typescript-eslint/semi': ['error', 'always'], | ||
'@typescript-eslint/comma-dangle': ['error', 'only-multiline'], | ||
'@typescript-eslint/strict-boolean-expressions': 'off', | ||
}, | ||
}, | ||
], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
**/dist | ||
/node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
module.exports = { | ||
preset: 'ts-jest', | ||
testEnvironment: 'node' | ||
}; |
Oops, something went wrong.