apps/web: disable eslint rule react/forbid-component-props
This commit is contained in:
parent
43b505c16d
commit
551e865401
@ -7,6 +7,7 @@ module.exports = createConfig('next-typescript', {
|
||||
},
|
||||
rules: {
|
||||
'import/no-duplicates': 'off',
|
||||
'react/forbid-component-props': 'off',
|
||||
},
|
||||
ignorePatterns: ['*.config.js', '.eslintrc.js'],
|
||||
});
|
||||
|
||||
@ -1,4 +1,3 @@
|
||||
/* eslint-disable react/forbid-component-props */
|
||||
import * as apiIUS from '@/api/ius/query';
|
||||
import { Conditions } from '@/components/Conditions';
|
||||
import type { PageProps } from '@/types/page';
|
||||
|
||||
@ -1,4 +1,3 @@
|
||||
/* eslint-disable react/forbid-component-props */
|
||||
import { Background } from 'ui';
|
||||
|
||||
type Props = {
|
||||
|
||||
@ -1,4 +1,3 @@
|
||||
/* eslint-disable react/forbid-component-props */
|
||||
import Link from 'next/link';
|
||||
import { Heading } from 'ui';
|
||||
|
||||
|
||||
@ -1,4 +1,3 @@
|
||||
/* eslint-disable react/forbid-component-props */
|
||||
'use client';
|
||||
import { Buttons } from './Buttons';
|
||||
import { FormContext, FormContextProvider } from './context/form-context';
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user