10 lines
289 B
TypeScript
10 lines
289 B
TypeScript
import { error, off } from '../constants';
|
|
import { ReactRules } from 'eslint-define-config/src/rules/react';
|
|
|
|
export const reactRules: Partial<ReactRules> = {
|
|
'react/display-name': off,
|
|
'react/no-children-prop': error,
|
|
'react/prop-types': off,
|
|
'react/react-in-jsx-scope': off,
|
|
};
|