Last active
February 21, 2021 15:47
-
-
Save yuritoledo/e377d601188c04293c04d93522671603 to your computer and use it in GitHub Desktop.
general rules
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
'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