File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
eslint-plugin/src/configs Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -16,15 +16,15 @@ npm install --save-dev eslint-plugin-react-x
1616
1717// @ts-check
1818import js from " @eslint/js" ;
19- import reactx from " eslint-plugin-react-x" ;
19+ import react from " eslint-plugin-react-x" ;
2020import tseslint from " typescript-eslint" ;
2121
2222export default tseslint .config ({
2323 files: [" **/*.ts" , " **/*.tsx" ],
2424 extends: [
2525 js .configs .recommended ,
2626 tseslint .configs .recommended ,
27- reactx .configs .recommended ,
27+ react .configs .recommended ,
2828 ],
2929 languageOptions: {
3030 parser: tseslint .parser ,
Original file line number Diff line number Diff line change 11import type { RulePreset } from "@eslint-react/kit" ;
22import { DEFAULT_ESLINT_REACT_SETTINGS } from "@eslint-react/shared" ;
3- import reactx from "eslint-plugin-react-x" ;
3+ import react from "eslint-plugin-react-x" ;
44
55export const name = "@eslint-react/core" ;
66
@@ -47,7 +47,7 @@ export const rules = {
4747} as const satisfies RulePreset ;
4848
4949export const plugins = {
50- "@eslint-react" : reactx ,
50+ "@eslint-react" : react ,
5151} ;
5252
5353export const settings = {
You can’t perform that action at this time.
0 commit comments