Skip to content
This repository has been archived by the owner on May 5, 2023. It is now read-only.

Commit

Permalink
fix(Runtime): Change Node version to 16 (LLC-2309) (#425)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Requires Node v16
  • Loading branch information
crazy-grizzly authored Feb 27, 2023
1 parent bbde6d1 commit 31072d5
Show file tree
Hide file tree
Showing 208 changed files with 32,145 additions and 6,857 deletions.
74 changes: 74 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
{
"root": true,
"env": {
"mocha": true
},
"extends": "standard-with-typescript",
"parser": "@typescript-eslint/parser",
"plugins": [
"import",
"n",
"promise"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"semi": "off",
"@typescript-eslint/semi": ["error", "always"],
"comma-dangle": "off",
"@typescript-eslint/comma-dangle": ["warn", "always-multiline"],
"@typescript-eslint/object-curly-spacing": ["warn", "always"],
"@typescript-eslint/consistent-type-imports": "warn",
"space-in-parens": "warn",
"@typescript-eslint/ban-tslint-comment": "warn",
"@typescript-eslint/explicit-function-return-type": "warn",
"@typescript-eslint/promise-function-async": "warn",
"@typescript-eslint/return-await": "warn",
"padded-blocks": "warn",
"@typescript-eslint/consistent-type-assertions": "warn",
"@typescript-eslint/array-type": [
"error",
{
"default": "array"
}
],
"@typescript-eslint/no-unused-vars": "warn",
"@typescript-eslint/no-base-to-string": "warn",
"@typescript-eslint/restrict-template-expressions": "warn",
"@typescript-eslint/space-infix-ops": "warn",
"@typescript-eslint/no-throw-literal": "warn",
"@typescript-eslint/consistent-indexed-object-style": ["error", "index-signature"],
"@typescript-eslint/member-delimiter-style": [
"error",
{
"multiline": {
"delimiter": "semi",
"requireLast": true
},
"singleline": {
"delimiter": "comma",
"requireLast": false
}
}
],
"@typescript-eslint/key-spacing": [
"error",
{
"afterColon": true,
"beforeColon": false
}
],
"import/first": "warn",
"no-mixed-operators": "warn",
"@typescript-eslint/strict-boolean-expressions": "warn",
"@typescript-eslint/space-before-function-paren": [
"error",
{
"anonymous": "never",
"named": "never",
"asyncArrow": "always"
}
]
}
}
4 changes: 2 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

services:
mongodb:
image: mongo:3.7.9
image: mongo:4.4
env:
MONGO_INITDB_DATABASE: test
ALLOW_EMPTY_PASSWORD: yes
Expand All @@ -31,7 +31,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: "14"
node-version: "16"
cache: 'npm'

- name: Installing Dependencies
Expand Down
Loading

0 comments on commit 31072d5

Please sign in to comment.