eslint-config-neon
Version:
The ultimate ESLint shareable config
92 lines (90 loc) • 3.23 kB
JavaScript
;
const require_runtime = require('./_virtual/_rolldown/runtime.cjs');
const require_jsx = require('./jsx.cjs');
let eslint_plugin_react = require("eslint-plugin-react");
eslint_plugin_react = require_runtime.__toESM(eslint_plugin_react, 1);
let eslint_plugin_react_refresh = require("eslint-plugin-react-refresh");
eslint_plugin_react_refresh = require_runtime.__toESM(eslint_plugin_react_refresh, 1);
let eslint_plugin_react_hooks = require("eslint-plugin-react-hooks");
eslint_plugin_react_hooks = require_runtime.__toESM(eslint_plugin_react_hooks, 1);
//#region src/react.ts
const rules = {
"react/boolean-prop-naming": 2,
"react/button-has-type": 2,
"react/default-props-match-prop-types": 2,
"react/destructuring-assignment": 0,
"react/display-name": 0,
"react/forbid-component-props": 0,
"react/forbid-dom-props": 0,
"react/forbid-elements": 0,
"react/forbid-foreign-prop-types": 0,
"react/forbid-prop-types": 0,
"react/function-component-definition": 0,
"react/hook-use-state": 2,
"react/iframe-missing-sandbox": 2,
"react/jsx-filename-extension": [1, { extensions: [".jsx", ".tsx"] }],
"react/no-access-state-in-setstate": 2,
"react/no-adjacent-inline-elements": 0,
"react/no-array-index-key": 0,
"react/no-arrow-function-lifecycle": 2,
"react/no-children-prop": 2,
"react/no-danger": 2,
"react/no-danger-with-children": 2,
"react/no-deprecated": 2,
"react/no-did-mount-set-state": 2,
"react/no-did-update-set-state": 2,
"react/no-direct-mutation-state": 2,
"react/no-find-dom-node": 2,
"react/no-invalid-html-attribute": 2,
"react/no-is-mounted": 2,
"react/no-multi-comp": 0,
"react/no-namespace": 2,
"react/no-redundant-should-component-update": 2,
"react/no-render-return-value": 2,
"react/no-set-state": 2,
"react/no-string-refs": 2,
"react/no-this-in-sfc": 2,
"react/no-typos": 2,
"react/no-unescaped-entities": 0,
"react/no-unknown-property": 2,
"react/no-unsafe": 2,
"react/no-unstable-nested-components": 2,
"react/no-unused-class-component-methods": 2,
"react/no-unused-prop-types": 2,
"react/no-unused-state": 2,
"react/no-will-update-set-state": 2,
"react/prefer-es6-class": 2,
"react/prefer-exact-props": 0,
"react/prefer-read-only-props": 2,
"react/prefer-stateless-function": [2, { ignorePureComponents: true }],
"react/prop-types": 2,
"react/react-in-jsx-scope": 0,
"react/require-default-props": 0,
"react/require-optimization": 0,
"react/require-render-return": 2,
"react/self-closing-comp": 2,
"react/sort-default-props": 2,
"react/sort-comp": 2,
"react/sort-prop-types": 2,
"react/state-in-constructor": [2, "always"],
"react/static-property-placement": 2,
"react/style-prop-object": 2,
"react/void-dom-elements-no-children": 2,
"react-hooks/exhaustive-deps": 2,
"react-hooks/rules-of-hooks": 2,
"react-refresh/only-export-components": 1,
"unicorn/consistent-function-scoping": 0
};
const settings = { react: { version: "detect" } };
const config = [...require_jsx, {
plugins: {
react: eslint_plugin_react.default,
"react-refresh": eslint_plugin_react_refresh.default,
"react-hooks": eslint_plugin_react_hooks.default
},
rules,
settings
}];
//#endregion
module.exports = config;
//# sourceMappingURL=react.cjs.map