UNPKG

@prisma-cms/mc.js-module

Version:
43 lines (42 loc) 1.08 kB
{ "parser": "babel-eslint", "parserOptions": { "sourceType": "module", "allowImportExportEverywhere": false, "codeFrame": false }, "extends": ["airbnb", "prettier"], "plugins": ["react-hooks"], "env": { "browser": true, "jest": true }, "rules": { "import/order": [ 2, { "groups": ["parent", "sibling"], "newlines-between": "always" } ], "prefer-promise-reject-errors": "off", "react/jsx-filename-extension": "off", "react/forbid-prop-types": "off", "import/prefer-default-export": "off", "no-plusplus": "off", "react/prop-types": "off", "no-return-assign": "off", "no-nested-ternary": "off", "no-param-reassign": "off", "no-continue": "off", "func-names": "off", "no-bitwise": "off", "consistent-return": "off", "import/no-webpack-loader-syntax": "off", "no-restricted-globals": "off", "react-hooks/rules-of-hooks": "error", "react-hooks/exhaustive-deps": "warn" }, "settings": { "import/resolver": { "alias": [["core", "./core"]] } } }