eslint-config-haku
Version:
Custom Eslint config with airbnb
19 lines (17 loc) • 480 B
JavaScript
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',
},
],
},
};