mirror of
https://github.com/ershisan99/flashcards-example-project.git
synced 2025-12-16 20:59:27 +00:00
10 lines
250 B
JavaScript
10 lines
250 B
JavaScript
module.exports = {
|
|
extends: ['@it-incubator/eslint-config', 'plugin:storybook/recommended'],
|
|
plugins:['myPlugin'],
|
|
rules: {
|
|
'no-console': ['warn', {
|
|
allow: ['warn', 'error']
|
|
}],
|
|
"myPlugin/no-wrong-redux-import": "error"
|
|
}
|
|
}; |