mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
10 lines
385 B
JavaScript
10 lines
385 B
JavaScript
module.exports = {
|
|
extends: ['@invoke-ai/eslint-config-react'],
|
|
rules: {
|
|
// TODO(psyche): Enable this rule. Requires no default exports in components - many changes.
|
|
'react-refresh/only-export-components': 'off',
|
|
// TODO(psyche): Enable this rule. Requires a lot of eslint-disable-next-line comments.
|
|
'@typescript-eslint/consistent-type-assertions': 'off',
|
|
},
|
|
};
|