Skip to content

Commit eaaa962

Browse files
committed
TsconfigとTslintを更新
1 parent be9e59f commit eaaa962

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tsconfig.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,14 @@
77
"baseUrl": "./",
88
"lib": [
99
"es6",
10-
"dom"
10+
"dom",
11+
"esnext.asynciterable"
1112
],
1213
"moduleResolution": "node",
1314
"declaration": true,
1415
"allowSyntheticDefaultImports": true,
1516
"noFallthroughCasesInSwitch": true,
16-
"noImplicitAny": true,
1717
"noImplicitReturns": true,
18-
"noImplicitThis": true,
1918
"noUnusedLocals": true,
2019
"noUnusedParameters": true,
2120
"strict": true,

tslint.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,12 @@ rules:
88
no-duplicate-imports: true
99
space-before-function-paren: true
1010
member-ordering: false
11-
ordered-imports: false
11+
ordered-imports: true
1212
object-literal-sort-keys: false
1313
max-line-length: false
1414
variable-name: false
1515
no-shadowed-variable: false
16+
no-consecutive-blank-lines: false
1617
interface-name:
1718
- true
1819
- never-prefix

0 commit comments

Comments
 (0)