Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.

Commit 25e428e

Browse files
committed
eslint'ing
1 parent 0161cb4 commit 25e428e

File tree

6 files changed

+823
-14
lines changed

6 files changed

+823
-14
lines changed

.eslintignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
**/dist/**
2+
**/out/**
3+
**/node_modules/**
4+
vscode*.d.ts

.eslintrc.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"root": true,
3+
"parser": "@typescript-eslint/parser",
4+
"parserOptions": {
5+
"ecmaVersion": 6,
6+
"sourceType": "module"
7+
},
8+
"plugins": [
9+
"@typescript-eslint"
10+
],
11+
"rules": {
12+
"@typescript-eslint/semi": "warn",
13+
"curly": "warn",
14+
"eqeqeq": "warn",
15+
"no-throw-literal": "warn",
16+
"semi": "off"
17+
}
18+
}

0 commit comments

Comments
 (0)