Skip to content

Commit 43dad96

Browse files
committed
ESLint in favor of TSLint (deprecated).
1 parent f5e797a commit 43dad96

File tree

5 files changed

+667
-141
lines changed

5 files changed

+667
-141
lines changed

.eslintrc

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"root": true,
3+
"parser": "@typescript-eslint/parser",
4+
"plugins": ["@typescript-eslint"],
5+
"extends": [
6+
"eslint:recommended",
7+
"plugin:@typescript-eslint/eslint-recommended",
8+
"plugin:@typescript-eslint/recommended"
9+
],
10+
"rules": {
11+
"semi": ["error", "never"]
12+
}
13+
}

.prettierrc

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"printWidth": 120,
3+
"semi": false,
4+
"singleQuote": true,
5+
"trailingComma": "all",
6+
"tabWidth": 2
7+
}

0 commit comments

Comments
 (0)