Last active
August 7, 2020 00:46
-
-
Save peidrao/c181796d7f250d9dd7d754cd0b7abc0d to your computer and use it in GitHub Desktop.
code typescript
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
"import/prefer-default-export": "off", | |
"react/jsx-props-no-spreading": "off", | |
"react/prop-types": "off", | |
"react/jsx-one-expression-per-line": "off", | |
"prettier/prettier": "error", | |
"@typescript-eslint/explicit-function-return-type": "off", | |
"camelcase": "off", | |
"@typescript-eslint/no-unused-vars": "off", | |
"import/extensions": [ | |
"error", | |
"ignorePackages", | |
{ | |
"ts": "never", | |
"tsx": "never", | |
"js": "never", | |
"jsx": "never" | |
} | |
], | |
"react/jsx-filename-extension": [ | |
1, | |
{ "extensions": [".js", ".jsx", ".ts", ".tsx"] } | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment