Fix lint error in nextauth page

This commit is contained in:
Cédric FAMIBELLE-PRONZOLA
2021-05-22 23:37:44 +02:00
parent 11ea0d49fc
commit b97da8d569
+6 -1
View File
@@ -48,7 +48,12 @@
"react/require-default-props": "warn", "react/require-default-props": "warn",
"react/react-in-jsx-scope": "off", "react/react-in-jsx-scope": "off",
"camelcase": "off", "camelcase": "off",
"react/boolean-prop-naming": "off" "react/boolean-prop-naming": "off",
"new-cap": [
"error", {
"capIsNewExceptions": ["Credentials", "NextAuth"]
}
]
} }
} }
} }