github.com/stampzilla/stampzilla-go@v2.0.0-rc9+incompatible/nodes/stampzilla-magicmirror/web/src/.eslintrc (about) 1 { 2 "parser": "babel-eslint", 3 4 "plugins": [ 5 "react", 6 "html" 7 ], 8 9 "env": { 10 "browser": true 11 }, 12 13 "extends": "airbnb", 14 15 "rules": { 16 "react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }], 17 "react/require-default-props": 0, 18 "jsx-a11y/media-has-caption": 0, 19 "function-paren-newline": ["error", "consistent"], 20 "jsx-a11y/anchor-is-valid": 0, 21 "jsx-a11y/click-events-have-key-events": 0, 22 "object-curly-newline": ["error", { "minProperties": 4, "consistent": true }], 23 "jsx-a11y/label-has-for": 0, 24 "jsx-a11y/no-autofocus": 0, 25 "camelcase": 0, 26 }, 27 28 "settings": { 29 "import/resolver": { 30 "node": { 31 "paths": ["src"] 32 } 33 }, 34 "html/report-bad-indent": "warn" 35 } 36 }