You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After fixing the, we can update the rule to on (by removing it)
// packages/eslint-config/index.js
module.exports = {
...
rules: {
...
'react/jsx-uses-react': 'off',
'react/react-in-jsx-scope': 'off',
- '@typescript-eslint/no-unused-vars': 'warn', // TODO fix and remove when we have bandwidth #45
'@typescript-eslint/no-var-requires': 'warn', // TODO remove when we convert to TS fully
},
};
The text was updated successfully, but these errors were encountered:
After fixing the, we can update the rule to on (by removing it)
// packages/eslint-config/index.js module.exports = { ... rules: { ... 'react/jsx-uses-react': 'off', 'react/react-in-jsx-scope': 'off', - '@typescript-eslint/no-unused-vars': 'warn', // TODO fix and remove when we have bandwidth #45 '@typescript-eslint/no-var-requires': 'warn', // TODO remove when we convert to TS fully }, };
The text was updated successfully, but these errors were encountered: