@u3u/eslint-config
Version:
My ESLint config
68 lines (63 loc) • 2.06 kB
JavaScript
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// src/react.ts
var react_exports = {};
__export(react_exports, {
default: () => react_default
});
module.exports = __toCommonJS(react_exports);
// src/utils/define-config.ts
var defineConfig = (config) => {
return config;
};
// src/react.ts
var react_default = defineConfig({
extends: ["plugin:react-hooks/recommended"],
plugins: ["react"],
rules: {
"react/function-component-definition": [
"warn",
{
namedComponents: "arrow-function",
unnamedComponents: "arrow-function"
}
],
"react/jsx-boolean-value": "warn",
"react/jsx-key": "warn",
"react/jsx-newline": ["warn", { allowMultilines: true, prevent: true }],
"react/jsx-sort-props": "warn",
"react/no-unknown-property": "off",
"react/prefer-stateless-function": "warn",
// 'react/jsx-handler-names': 'warn',
// 'react/jsx-no-useless-fragment': 'warn',
"react/self-closing-comp": ["warn", { component: true, html: true }],
"react/style-prop-object": "warn"
},
settings: {
react: {
version: "detect"
}
}
});
// fix-cjs-exports
if (module.exports.default) {
Object.assign(module.exports.default, module.exports);
module.exports = module.exports.default;
delete module.exports.default;
}
;