Skip to content

Commit 2d26a72

Browse files
author
Jerry Bruwes
committed
new file: .eslintrc.json
1 parent 35d2e4e commit 2d26a72

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.eslintrc.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"root": true,
3+
"parserOptions": {
4+
"parser": "@typescript-eslint/parser",
5+
"project": "./tsconfig.json"
6+
},
7+
"extends": [
8+
"airbnb-base",
9+
"airbnb-typescript/base",
10+
"plugin:@typescript-eslint/strict-type-checked",
11+
"plugin:@typescript-eslint/stylistic-type-checked",
12+
"plugin:perfectionist/recommended-natural-legacy",
13+
"plugin:prettier/recommended"
14+
],
15+
"plugins": ["eslint-plugin-tsdoc"],
16+
"rules": {
17+
"tsdoc/syntax": "warn",
18+
"prettier/prettier": [
19+
"error",
20+
{
21+
"endOfLine": "auto"
22+
}
23+
]
24+
}
25+
}

0 commit comments

Comments
 (0)