create-chuntianxiaozhu
Version:
春天小猪模板工具
14 lines (12 loc) • 388 B
JavaScript
const { getESLintConfig } = require("@applint/spec");
module.exports = getESLintConfig("react-ts", {
rules: {
"@typescript-eslint/quotes": "off",
"prefer-destructuring": "off",
"@typescript-eslint/comma-dangle": "off",
"react/self-closing-comp": "off",
"max-len": "off",
"@typescript-eslint/ban-types": "off",
"react-hooks/exhaustive-deps": "off",
},
});