mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 12:49:37 +03:00
23 lines
763 B
JavaScript
23 lines
763 B
JavaScript
|
// ESLint rules specific to writing react components.
|
||
|
|
||
|
module.exports = {
|
||
|
rules: {
|
||
|
// Prefer arrow functions when defining functional components
|
||
|
// This enables the `export const Foo: FC<FooProps> = ({ bar }) => ...` style we prefer.
|
||
|
'react/function-component-definition': [
|
||
|
'warn',
|
||
|
{
|
||
|
namedComponents: 'arrow-function',
|
||
|
unnamedComponents: 'arrow-function',
|
||
|
},
|
||
|
],
|
||
|
|
||
|
// In functional components, mostly ensures Props are defined above components.
|
||
|
'@typescript-eslint/no-use-before-define': 'error',
|
||
|
|
||
|
// React components tend to use named exports.
|
||
|
// Additionally, the `export default function` syntax cannot be auto-fixed by eslint when using ts.
|
||
|
'import/prefer-default-export': 'off',
|
||
|
},
|
||
|
};
|