Skip to content

Instantly share code, notes, and snippets.

@yuritoledo
Last active February 21, 2021 15:47
Show Gist options
  • Save yuritoledo/e377d601188c04293c04d93522671603 to your computer and use it in GitHub Desktop.
Save yuritoledo/e377d601188c04293c04d93522671603 to your computer and use it in GitHub Desktop.
general rules
{
'consistent-return': 'off',
'no-shadow': 'off',
'global-require': 'off',
'react/require-default-props': 'off',
'react/react-in-jsx-scope': 'off',
'react/jsx-filename-extension': 'off',
'react/prop-types': 'off',
'react/jsx-props-no-spreading': 'off',
'no-unused-vars': 'off',
semi: ['warn', 'never'],
'@typescript-eslint/no-unused-vars': 'warn',
'import/prefer-default-export': 'off',
'import/no-unresolved': 'off',
'import/extensions': 'off',
'import/no-extraneous-dependencies': 'off',
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment