Skip to content

Commit 7d4c2a1

Browse files
authored
Align versions to resolve npm install errors (#2119)
* adjust versions to resolve npm install errors * linting fixes
1 parent 4f03eaa commit 7d4c2a1

File tree

4 files changed

+1710
-2233
lines changed

4 files changed

+1710
-2233
lines changed

.markdownlint.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ ol-prefix:
1515
style: "ordered"
1616
code-fence-style:
1717
style: "backtick"
18+
emphasis-style: false

content/python/concepts/inheritance/inheritance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,4 +321,4 @@ obj.m()
321321
# Output: in B
322322
```
323323

324-
The order of parent classes decide which class `D` inherits from. To call the parent function of choice, the [super() method](<#super()>) is called inside the child class.
324+
The order of parent classes decide which class `D` inherits from. To call the parent function of choice, the `super()` method is called inside the child class.

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@
55
"glob": "^7.1.7"
66
},
77
"devDependencies": {
8-
"@codecademy/eslint-config": "^8.0.0",
9-
"@codecademy/prettier-config": "^0.1.10",
10-
"@codecademy/tsconfig": "^0.2.0",
11-
"@types/glob": "^7.1.4",
12-
"@types/jest": "^26.0.24",
13-
"@types/node": "^16.4.3",
14-
"eslint": "^7.25.0",
15-
"husky": "^7.0.4",
16-
"jest": "^27.0.6",
17-
"lint-staged": "^12.1.2",
18-
"markdownlint-cli": "~0.28.1",
19-
"prettier": "^2.2.1",
20-
"ts-jest": "^27.0.4",
21-
"typescript": "^4.2.4"
8+
"@codecademy/eslint-config": "^6.0.0",
9+
"@codecademy/prettier-config": "^0.2.0",
10+
"@codecademy/tsconfig": "^0.3.0",
11+
"@types/glob": "^8.1.0",
12+
"@types/jest": "^29.5.1",
13+
"@types/node": "^20.1.0",
14+
"eslint": "^7.32.0",
15+
"husky": "^8.0.3",
16+
"jest": "^29.5.0",
17+
"lint-staged": "^13.2.2",
18+
"markdownlint-cli": "^0.34.0",
19+
"prettier": "^2.8.8",
20+
"ts-jest": "^29.1.0",
21+
"typescript": "^4.4.4"
2222
},
2323
"lint-staged": {
2424
"*.md": [

0 commit comments

Comments
 (0)