mirror of
https://github.com/status-im/sourcecred.git
synced 2025-01-10 12:46:16 +00:00
1901d471f3
Summary: Even though it’s not really a source file, and it lives at the repository root, it might as well have typing to make sure that we don’t do anything really dumb. Test Plan: `yarn flow` still passes. wchargin-branch: flow-eslintrc
16 lines
310 B
JavaScript
16 lines
310 B
JavaScript
// @flow
|
|
module.exports = {
|
|
extends: "react-app",
|
|
rules: {
|
|
"no-unused-vars": [
|
|
"warn",
|
|
{
|
|
argsIgnorePattern: "^_$|^_unused_",
|
|
varsIgnorePattern: "^_$|^_unused_",
|
|
caughtErrorsIgnorePattern: "^_$|^_unused_",
|
|
},
|
|
],
|
|
"no-use-before-define": ["off"],
|
|
},
|
|
};
|