We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35d2e4e commit 2d26a72Copy full SHA for 2d26a72
.eslintrc.json
@@ -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