|
33 | 33 | "react/jsx-uses-react": 2, |
34 | 34 | "react/jsx-uses-vars": 2, |
35 | 35 | "react/react-in-jsx-scope": 2, |
36 | | - "react/prop-types": 2, |
| 36 | + "react/prop-types": 0, |
37 | 37 | "react/sort-comp": 0, |
| 38 | + "react/destructuring-assignment": 0, |
| 39 | + "react/forbid-prop-types": 0, |
| 40 | + "react/static-property-placement": 0, |
| 41 | + "react/jsx-filename-extension": 0, |
| 42 | + "react/state-in-constructor": 0, |
| 43 | + "react/no-deprecated": 0, |
| 44 | + "react/no-access-state-in-setstate": 0, |
| 45 | + "react/jsx-closing-tag-location": 0, |
| 46 | + "react/self-closing-comp": 0, |
| 47 | + "react/default-props-match-prop-types": 0, |
| 48 | + "react/jsx-max-props-per-line": 0, |
| 49 | + "react/no-array-index-key": 0, |
| 50 | + "react/no-unused-prop-types": 0, |
| 51 | + "react/jsx-curly-newline": 0, |
| 52 | + "react/jsx-wrap-multilines": 0, |
| 53 | + "react/require-default-props": 0, |
| 54 | + "react/jsx-props-no-spreading": 0, |
| 55 | + "react/button-has-type": 0, |
| 56 | + "react/no-unused-state": 0, |
| 57 | + "react/jsx-one-expression-per-line": 0, |
| 58 | + "react/jsx-indent": 0, |
| 59 | + "react/no-unescaped-entities": 0, |
| 60 | + "react/jsx-no-target-blank": 0, |
| 61 | + "react/jsx-curly-brace-presence": 0, |
| 62 | + "jsx-a11y/label-has-associated-control": 0, |
| 63 | + "jsx-a11y/no-static-element-interactions": 0, |
| 64 | + "jsx-a11y/click-events-have-key-events": 0, |
| 65 | + "jsx-a11y/no-noninteractive-element-interactions": 0, |
| 66 | + "jsx-a11y/alt-text": 0, |
| 67 | + "prefer-object-spread": 0, |
| 68 | + "prefer-destructuring": 0, |
| 69 | + "no-useless-return": 0, |
| 70 | + "class-methods-use-this": 0, |
| 71 | + "no-lonely-if": 0, |
| 72 | + "spaced-comment": 0, |
38 | 73 | "no-duplicate-imports": 0, |
| 74 | + "no-prototype-builtins": 0, |
| 75 | + "no-restricted-globals": 0, |
| 76 | + "no-plusplus": 0, |
| 77 | + "no-undef-init": 0, |
| 78 | + "no-await-in-loop": 0, |
| 79 | + "lines-between-class-members": 0, |
| 80 | + "max-classes-per-file": 0, |
| 81 | + "import/no-named-as-default": 0, |
| 82 | + "import/prefer-default-export": 0, |
39 | 83 | "import/no-duplicates": 2, |
| 84 | + "import/order": 0, |
| 85 | + "import/first": 0, |
| 86 | + "import/newline-after-import": 0, |
| 87 | + "import/no-cycle": 0, |
40 | 88 | "no-useless-escape": 0 |
41 | 89 | }, |
42 | 90 | "settings": { |
43 | 91 | "react": { |
44 | 92 | "createClass": "createReactClass", // Regex for Component Factory to use, default to "createReactClass" |
45 | 93 | "pragma": "React", // Pragma to use, default to "React" |
46 | | - "version": "16.4", // React version, default to the latest React stable release |
47 | | - "flowVersion": "0.53" // Flow version |
| 94 | + "version": "16.11" // React version, default to the latest React stable release |
48 | 95 | }, |
49 | 96 | "import/resolver": { |
50 | 97 | "babel-module": { |
51 | 98 | "alias": { |
52 | 99 | "@components": "./app/js/components", |
53 | | - "@common": "./app/js/common", |
54 | 100 | "@styled": "./app/js/components/styled", |
55 | | - "@utils": "./app/js/utils", |
56 | 101 | "@blockstack/ui": "./app/js/components/ui", |
57 | 102 | "@ui/components": "./app/js/components/ui/components", |
58 | 103 | "@ui/containers": "./app/js/components/ui/containers", |
|
0 commit comments