-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Booster] Milestone 0: Project preparation
- Loading branch information
1 parent
2513803
commit 19dff43
Showing
11 changed files
with
16,142 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
**/node_modules/* | ||
**/dist/* | ||
kyc-nest/kyc-nest.sqlite | ||
kyc-nest/kyc-nest.sqlite | ||
kyc-booster/.booster/* | ||
kyc-booster/errors.log |
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,3 @@ | ||
dist | ||
lib | ||
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,49 @@ | ||
module.exports = { | ||
root: true, | ||
env: { | ||
node: true, | ||
es6: true, | ||
}, | ||
extends: [ | ||
'eslint:recommended', | ||
'plugin:@typescript-eslint/eslint-recommended', | ||
'plugin:@typescript-eslint/recommended', | ||
'prettier', | ||
'plugin:prettier/recommended', // Enables eslint-plugin-prettier and eslint-config-prettier. This will display prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array. | ||
], | ||
globals: { | ||
Atomics: 'readonly', | ||
SharedArrayBuffer: 'readonly', | ||
}, | ||
parser: '@typescript-eslint/parser', | ||
plugins: ['@typescript-eslint'], | ||
parserOptions: { | ||
ecmaVersion: 2018, | ||
sourceType: 'module', | ||
project: 'tsconfig.eslint.json', | ||
}, | ||
rules: { | ||
indent: ['error', 2, { SwitchCase: 1 }], | ||
'linebreak-style': ['error', 'unix'], | ||
quotes: ['error', 'single', { avoidEscape: true, allowTemplateLiterals: false }], | ||
semi: ['error', 'never'], | ||
'no-extra-parens': 'off', | ||
'@typescript-eslint/no-extra-parens': ['error'], | ||
'no-magic-numbers': 'off', | ||
'@typescript-eslint/no-parameter-properties': 0, | ||
'@typescript-eslint/no-floating-promises': ['error'], | ||
'@typescript-eslint/array-type': [0, 'generic'], | ||
'@typescript-eslint/no-use-before-define': 0, | ||
'@typescript-eslint/no-var-requires': 0, | ||
'@typescript-eslint/ban-ts-ignore': 0, | ||
'@typescript-eslint/no-empty-function': 0, | ||
'@typescript-eslint/explicit-function-return-type': [ | ||
'warn', | ||
{ | ||
allowExpressions: true, | ||
allowTypedFunctionExpressions: true, | ||
allowHigherOrderFunctions: true, | ||
}, | ||
], | ||
}, | ||
} |
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,9 @@ | ||
tabWidth: 2 | ||
useTabs: false | ||
semi: false | ||
singleQuote: true | ||
quoteProps: 'as-needed' | ||
trailingComma: 'es5' | ||
bracketSpacing: true | ||
arrowParens: always | ||
printWidth: 120 |
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,13 @@ | ||
# KYC-Booster | ||
|
||
## install dependencies | ||
|
||
```bash | ||
npm install | ||
``` | ||
|
||
## Run the development server | ||
|
||
```bash | ||
boost start -e local --verbose | ||
``` |
Oops, something went wrong.