Skip to content

Commit 056a75e

Browse files
author
Jakub Jirous
committed
remove code smell
1 parent 879b7ad commit 056a75e

File tree

4 files changed

+1222
-25
lines changed

4 files changed

+1222
-25
lines changed

.eslintrc.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
3+
"parser": "@typescript-eslint/parser",
4+
"plugins": ["@typescript-eslint"],
5+
"root": true
6+
}

package.json

+23-13
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,25 @@
66
"type": "git",
77
"url": "git+https://github.com/jakubjirous/code-signal.git"
88
},
9+
"keywords": [
10+
"typescript",
11+
"jest"
12+
],
913
"author": "Jakub Jirous <[email protected]>",
1014
"license": "MIT",
1115
"description": "Get your Coding Report and Prepare for Interviews",
1216
"bugs": {
1317
"url": "https://github.com/jakubjirous/code-signal/issues"
1418
},
1519
"homepage": "https://github.com/jakubjirous/code-signal#readme",
20+
"scripts": {
21+
"build": "tsc",
22+
"lint": "eslint . --ext .ts",
23+
"test": "jest",
24+
"test:w": "jest --watch",
25+
"test:wa": "jest --watchAll",
26+
"test:cov": "jest --coverage"
27+
},
1628
"dependencies": {
1729
"babel-jest": "^29.3.1",
1830
"babel-plugin-istanbul": "^6.1.1",
@@ -47,22 +59,20 @@
4759
"jest-worker": "^29.3.1",
4860
"load-tsconfig": "^0.2.3",
4961
"source-map": "^0.6.1",
50-
"source-map-support": "^0.5.13"
62+
"source-map-support": "^0.5.13",
63+
"ts-node": "^10.9.1"
5164
},
5265
"devDependencies": {
5366
"@types/jest": "^29.2.4",
67+
"@typescript-eslint/eslint-plugin": "^5.48.0",
68+
"@typescript-eslint/parser": "^5.48.0",
69+
"eslint": "^8.31.0",
70+
"eslint-config-google": "^0.14.0",
71+
"eslint-config-standard-with-typescript": "^24.0.0",
72+
"eslint-plugin-import": "^2.25.2",
73+
"eslint-plugin-n": "^15.0.0",
74+
"eslint-plugin-promise": "^6.0.0",
5475
"ts-jest": "^29.0.3",
5576
"typescript": "^4.9.4"
56-
},
57-
"scripts": {
58-
"build": "tsc",
59-
"test": "jest",
60-
"test:w": "jest --watch",
61-
"test:wa": "jest --watchAll",
62-
"test:cov": "jest --coverage"
63-
},
64-
"keywords": [
65-
"typescript",
66-
"jest"
67-
]
77+
}
6878
}

src/arcade/intro/04-adjacent-elements-product/adjacent-elements-product.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ export type Output = number;
88
export const adjacentElementsProduct = (inputArray: Input): Output => {
99
return inputArray.reduce((acc, value, index, array) => {
1010
const nextCase = value * array[index - 1];
11-
return nextCase > acc ? (acc = nextCase) : acc;
11+
return nextCase > acc ? nextCase : acc;
1212
}, Number.NEGATIVE_INFINITY);
1313
};

0 commit comments

Comments
 (0)