Skip to content

Commit 7504385

Browse files
authored
Merge pull request #18 from github/typescript
Convert project to Typescript
2 parents a82d005 + 94b2d3c commit 7504385

File tree

13 files changed

+1903
-3850
lines changed

13 files changed

+1903
-3850
lines changed

.babelrc

Lines changed: 0 additions & 18 deletions
This file was deleted.

.eslintrc.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
11
{
2+
"parser": "@typescript-eslint/parser",
23
"extends": [
34
"plugin:github/es6",
45
"plugin:github/browser",
5-
"plugin:github/flow"
6+
"plugin:github/typescript"
67
],
8+
"rules": {
9+
"@typescript-eslint/no-non-null-assertion": "off"
10+
},
711
"overrides": [
812
{
913
"files": "test/**/*.js",
14+
"parser": "espree",
15+
"parserOptions": {
16+
"ecmaVersion": 2020
17+
},
1018
"rules": {
1119
"flowtype/require-valid-file-annotation": "off",
1220
"github/unescaped-html-literal": "off",

.flowconfig

Lines changed: 0 additions & 11 deletions
This file was deleted.

CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @github/web-systems-reviewers

index.d.ts

Lines changed: 0 additions & 32 deletions
This file was deleted.

0 commit comments

Comments
 (0)