We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f007f1 commit c456bd0Copy full SHA for c456bd0
package.json
@@ -13,7 +13,7 @@
13
"build-cjs": "tsc --project tsconfig.build.json --outDir dist/cjs --module commonjs",
14
"clean": "rimraf dist",
15
"jest": "jest",
16
- "lint": "eslint src",
+ "lint": "eslint .",
17
"postinstall": "husky install",
18
"prepack": "yarn clean && yarn build",
19
"prettier": "prettier --check . --cache",
test-utils.ts
@@ -37,7 +37,7 @@ export function duplicate(x: number) {
37
38
export const duplicateInRandomTime = makeDelayed(duplicate);
39
40
-export function largerThanTwo(x: Number) {
+export function largerThanTwo(x: number) {
41
return x > 2;
42
}
43
0 commit comments