Skip to content

Commit 2703f8a

Browse files
committed
Merge branch 'part3/finish'
2 parents b52c096 + edae506 commit 2703f8a

File tree

7 files changed

+1604
-38
lines changed

7 files changed

+1604
-38
lines changed

.eslintignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules/*
2+
dist/*
3+
coverage/*

.eslintrc

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"parser": "@typescript-eslint/parser",
3+
"extends": [
4+
"plugin:@typescript-eslint/recommended",
5+
"prettier/@typescript-eslint",
6+
"plugin:prettier/recommended"
7+
],
8+
"parserOptions": {
9+
"ecmaVersion": 2018,
10+
"sourceType": "module"
11+
},
12+
"rules": {
13+
"prettier/prettier": ["error", { "singleQuote": true }],
14+
"@typescript-eslint/explicit-function-return-type": "error",
15+
"@typescript-eslint/no-explicit-any": 1,
16+
"@typescript-eslint/no-inferrable-types": ["error", { "ignoreParameters": true }]
17+
},
18+
"env": {
19+
"node": true
20+
}
21+
}

.prettierrc

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

0 commit comments

Comments
 (0)