Skip to content

Commit

Permalink
node modules to eslint ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
ihsan-ofluoglu committed Aug 22, 2023
1 parent dcf8035 commit cbef421
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
docs
/node_modules
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json --runInBand",
"lint:tsc": "tsc",
"lint:tsc": "tsc --skipLibCheck",
"lint:eslint": "eslint 'src/**/*.ts'",
"lint": "yarn lint:tsc && yarn lint:eslint",
"format": "prettier --write 'src/**/*.ts' && yarn lint:eslint --fix",
Expand All @@ -40,7 +40,7 @@
"prettier": "^2.0.5",
"taffydb": "^2.7.3",
"ts-jest": "^26.1.1",
"typescript": "^3.9.5"
"typescript": "^4.9.5"
},
"engines": {
"node": ">=14.0.0"
Expand Down
1 change: 1 addition & 0 deletions src/config.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/**
* @type {Config}
*/
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export type Config = { [key in string]: any };
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true,
"esModuleInterop": true,
"skipLibCheck": true
"skipLibCheck": true,
},
"include": [
"src/**/*"
]
],
}
4 changes: 2 additions & 2 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5799,12 +5799,12 @@ typedarray-to-buffer@^3.1.5:
dependencies:
is-typedarray "^1.0.0"

typescript@^3.2.2, typescript@^3.9.5:
typescript@^3.2.2:
version "3.9.10"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.10.tgz#70f3910ac7a51ed6bef79da7800690b19bf778b8"
integrity sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q==

typescript@^4.5.4:
typescript@^4.5.4, typescript@^4.9.5:
version "4.9.5"
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a"
integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==
Expand Down

0 comments on commit cbef421

Please sign in to comment.