@michaeljaltamirano/eslint-plugin
Version:
Strongly-opinionated ESLint config
16 lines (15 loc) • 329 B
JSON
{
"extends": ["plugin:react/all", "airbnb"],
"rules": {
"react/jsx-filename-extension": [
"error",
{ "extensions": [".js", ".tsx"] }
],
"react/require-default-props": [
"error",
{ "ignoreFunctionalComponents": true }
],
"react/state-in-constructor": "off",
"react/static-property-placement": "off"
}
}