UNPKG

eslint-config-haku

Version:
19 lines (17 loc) 480 B
module.exports = { extends: ["./lib/base", "airbnb-typescript", "plugin:tailwindcss/recommended", "prettier"], rules: { "react/react-in-jsx-scope": "off", "react/jsx-uses-react": "off", "react/jsx-props-no-spreading": "off", "react/require-default-props": "off", "no-restricted-imports": [ "error", { name: "react", importNames: ["default"], message: 'Use import { xxx } from "react"; instead', }, ], }, };