11{
22 "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"
511 ],
612 "overrides": [
713 {
814 "files": [
9- "**/*.ts",
10- "**/*.tsx"
15+ "**/*.md"
1116 ],
1217 "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+ ]
3120 }
3221 ],
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",
4423 "rules": {
4524 "import/prefer-default-export": "off",
4625 "no-console": "error"
4726 }
48- }
27+ }
0 commit comments