Skip to content

Commit a850fd5

Browse files
committedDec 1, 2020
Initial NodeJS RIC Implementation
1 parent 1cd21ec commit a850fd5

File tree

72 files changed

+9283
-8
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+9283
-8
lines changed
 

‎.dockerignore

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
node_modules
2+
**/node_modules
3+
4+
build
5+
**/build
6+
7+
lib
8+
**/lib
9+
10+
.idea
11+
**/.idea
12+
13+
package-lock.json
14+
**/package-lock.json
15+
16+
test/integration/*.ts
17+
18+
.git
19+
.DS_STORE

‎.eslintrc

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"parser": "@typescript-eslint/parser",
3+
"parserOptions": {
4+
"project": ["src/tsconfig.json", "test/unit/tsconfig.json"]
5+
},
6+
"plugins": ["@typescript-eslint"],
7+
"extends": [
8+
"eslint:recommended",
9+
"plugin:@typescript-eslint/eslint-recommended",
10+
"plugin:@typescript-eslint/recommended",
11+
"prettier",
12+
"prettier/@typescript-eslint"
13+
],
14+
"env": {
15+
"node": true,
16+
"es6": true
17+
},
18+
"rules": {
19+
"@typescript-eslint/restrict-plus-operands": "error",
20+
"@typescript-eslint/interface-name-prefix": "off",
21+
"no-async-promise-executor": "warn",
22+
"@typescript-eslint/explicit-function-return-type": "off",
23+
"@typescript-eslint/indent": "off",
24+
"@typescript-eslint/ban-types": "warn",
25+
"no-console": "warn",
26+
"no-shadow": "warn"
27+
},
28+
"overrides": [
29+
{
30+
"files":["test/**/*.ts"],
31+
"rules": {
32+
"no-console": "off",
33+
"@typescript-eslint/no-explicit-any": "off",
34+
"no-prototype-builtins": "off",
35+
"strictBindCallApply": "off"
36+
}
37+
}
38+
]
39+
}

0 commit comments

Comments
 (0)
Please sign in to comment.