github.com/m3db/m3@v1.5.0/src/ctl/ui/.eslintrc (about) 1 { 2 "parser": "babel-eslint", 3 "extends": [ 4 "react-app", 5 "plugin:flowtype/recommended", 6 "plugin:react/recommended", 7 "eslint-config-uber-es2015", 8 "eslint-config-uber-jsx", 9 "prettier", 10 "prettier/flowtype", 11 "prettier/react" 12 ], 13 14 "plugins": [ 15 "import", 16 "flowtype", 17 "react", 18 "prettier" 19 ], 20 21 "env": { 22 "jest": true, 23 "browser": true 24 }, 25 26 "rules": { 27 "no-inline-comments": 1, 28 "max-len": 0, 29 "func-style": 1, 30 "valid-jsdoc": 2, 31 "import/no-unresolved": "off", 32 "import/named": 2, 33 "import/namespace": 2, 34 "import/default": 2, 35 "import/export": 2, 36 "flowtype/generic-spacing": 0, 37 "prettier/prettier": ["error", "fb"], 38 "react/no-string-refs": 0, 39 "react/jsx-key": 0, 40 "react/no-children-prop": 0 41 } 42 }