create-chuntianxiaozhu
Version:
春天小猪模板工具
18 lines (16 loc) • 548 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",
"@typescript-eslint/no-duplicate-imports": "off",
"@typescript-eslint/prefer-for-of": "off",
"id-length": "off",
"no-negated-condition": "off",
},
});