1
1
{
2
2
"extends": [
3
- "@visionappscz/eslint-config-visionapps",
4
- "plugin:deprecation/recommended"
3
+ "@visionappscz/eslint-config-visionapps"
4
+ ],
5
+ "env": {
6
+ "browser": true,
7
+ "jest": true
8
+ },
9
+ "ignorePatterns": [
10
+ "src/docs/_assets/generated"
5
11
],
6
12
"overrides": [
7
13
{
8
14
"files": [
9
- "**/*.ts",
10
- "**/*.tsx"
15
+ "**/*.md"
11
16
],
12
17
"extends": [
13
- "@visionappscz/eslint-config-visionapps",
14
- "airbnb-typescript",
15
- "plugin:@typescript-eslint/recommended",
16
- "plugin:typescript-sort-keys/recommended"
17
- ],
18
- "parser": "@typescript-eslint/parser",
19
- "parserOptions": {
20
- "project": "tsconfig.json"
21
- },
22
- "plugins": ["@typescript-eslint"],
23
- "rules": {
24
- "@typescript-eslint/no-unused-vars": ["error"],
25
- "@typescript-eslint/object-curly-spacing": ["error"],
26
- "import/prefer-default-export": ["off"],
27
- "no-console": ["error"],
28
- "react/default-props-match-prop-types": ["off"],
29
- "react/require-default-props": ["off"]
30
- }
18
+ "plugin:markdown/recommended"
19
+ ]
31
20
}
32
21
],
33
- "env": {
34
- "browser": true,
35
- "jest": true
36
- },
37
- "parser": "@typescript-eslint/parser",
38
- "parserOptions": {
39
- "project": "./tsconfig.json"
40
- },
41
- "plugins": [
42
- "@typescript-eslint"
43
- ],
22
+ "parser": "@babel/eslint-parser",
44
23
"rules": {
45
24
"import/prefer-default-export": "off",
46
25
"no-console": "error"
47
26
}
48
- }
27
+ }
0 commit comments