2023-08-01 12:58:17 +03:00

14 lines
282 B
JavaScript

module.exports = {
rules: {
'react/prop-types': 'off',
'react/jsx-sort-props': 'off',
'react/function-component-definition': [
'error',
{
namedComponents: 'function-declaration',
unnamedComponents: 'arrow-function',
},
],
},
};