Skip to content

Commit 529bb67

Browse files
committed
add @typescript-eslint/recommended linter
1 parent cb20268 commit 529bb67

File tree

8 files changed

+23
-12
lines changed

8 files changed

+23
-12
lines changed

.eslintrc.yml

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ env:
55
extends:
66
- airbnb-base
77
- airbnb-typescript/base
8+
- plugin:@typescript-eslint/recommended
9+
- plugin:@typescript-eslint/recommended-requiring-type-checking
810
overrides: []
911
parserOptions:
1012
project: './tsconfig.json'

modules/10-basics/40-named-functions/description.ru.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ theory: |
4545
4646
## Значение по умолчанию
4747
48-
Со значением по умолчанию ситуация проще. Здесь не нужно ничего дополнительно указывать, значение задается как в JavaScript, а сама переменная автоматически становится необязательной:
48+
Со значением по умолчанию ситуация проще. Здесь не нужно ничего дополнительно указывать, значение задается как в JavaScript. Сама переменная автоматически становится необязательной, и тип выводится исходя из переданного значения:
4949
5050
```typescript
51-
function getGreetingPhrase(name: string = 'Guest') {
51+
function getGreetingPhrase(name = 'Guest') {
5252
return `Hello, ${name.toUpperCase()}!`;
5353
}
5454

modules/10-basics/40-named-functions/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// BEGIN
2-
function getHiddenCard(cardNumber: string, starsCount: number = 4): string {
2+
function getHiddenCard(cardNumber: string, starsCount = 4): string {
33
const visibleDigitsLine = cardNumber.slice(12);
44
return `${'*'.repeat(starsCount)}${visibleDigitsLine}`;
55
}

modules/10-basics/80-any/index.ts

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/* eslint-disable @typescript-eslint/no-unsafe-member-access */
2+
/* eslint-disable @typescript-eslint/no-unsafe-assignment */
3+
/* eslint-disable @typescript-eslint/no-unsafe-return */
4+
5+
// BEGIN
16
function getParams(query: string) {
27
const parts = query.split('&');
38
const init: any = {};
@@ -9,5 +14,6 @@ function getParams(query: string) {
914

1015
return result;
1116
}
17+
// END
1218

1319
export default getParams;
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import map from './index';
22

33
test('function', () => {
4-
const result = map([], (n) => n + 3);
4+
const result = map([], (n: number) => n + 3);
55
expect(result).toEqual([]);
66

7-
const result2 = map([3, 9], (n) => n - 3);
7+
const result2 = map([3, 9], (n: number) => n - 3);
88
expect(result2).toEqual([0, 6]);
99

10-
const result3 = map([8, 9], (n) => n + 8);
10+
const result3 = map([8, 9], (n: number) => n + 8);
1111
expect(result3).toEqual([16, 17]);
1212
});

modules/20-functions/30-void/test.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ import forEach from './index';
22

33
test('function', () => {
44
const result: number[] = [];
5-
forEach([], (n) => result.push(n));
5+
forEach([], (n: number) => result.push(n));
66
expect(result).toEqual([]);
77

88
const result2: number[] = [];
9-
forEach([3, 9], (n) => result2.push(n + 1));
9+
forEach([3, 9], (n: number) => result2.push(n + 1));
1010
expect(result2).toEqual([4, 10]);
1111

1212
const result3: number[] = [];
13-
forEach([8, 9], (n, i) => result3.push(n + i));
13+
forEach([8, 9], (n: number, i) => result3.push(n + i));
1414
expect(result3).toEqual([8, 10]);
1515
});
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1+
// BEGIN
12
function last(value: string | number) {
23
if (typeof value === 'number') {
3-
return String(value).at(-1);
4+
return Number(String(value).at(-1));
45
}
56

67
return value.at(-1);
78
}
9+
// END
810

911
export default last;

modules/22-arrays/25-multi-dimensional-arrays/index.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
type FieldRow = (string | null)[];
1+
type Cell = string | null;
2+
type FieldRow = Cell[];
23
type Field = FieldRow[];
34

45
function getField(size: number): Field {
56
const field: Field = [];
67
for (let i = 0; i < size; i += 1) {
7-
const row: FieldRow = Array(size).fill(null, 0);
8+
const row: FieldRow = Array<Cell>(size).fill(null, 0);
89
field.push(row);
910
}
1011

0 commit comments

Comments
 (0)