UNPKG

react-semantic-toasts

Version:
37 lines (36 loc) 1.1 kB
{ "extends": ["airbnb", "prettier", "prettier/react"], "plugins": ["react", "jsx-a11y", "import"], "parser": "babel-eslint", "parserOptions": { "ecmaVersion": 2018, "sourceType": "module", "ecmaFeatures": { "jsx": true } }, "env": { "es6": true, "browser": true, "node": true }, "rules": { "import/no-unresolved": "off", "no-prototype-builtins": "off", "react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }], "react/jsx-props-no-spreading": "off", "react/prop-types": [2], "react/no-did-mount-set-state": "off", "react/destructuring-assignment": "off", "react/static-property-placement": "off", "react/state-in-constructor": "off", "jsx-a11y/anchor-is-valid": [ "error", { "components": ["Link"], "specialLink": ["to", "hrefLeft", "hrefRight"], "aspects": ["noHref", "invalidHref", "preferButton"] } ] } }