Posts by Rafael Lima • 101 points
3 posts
-
0
votes1
answer28
viewsA: Force class in React to use Arrow Function with Eslint
You can use this Eslint plugin to do this: https://www.npmjs.com/package/eslint-plugin-prefer-arrow Example: "plugins": [ "prefer-arrow" ], "rules": [ "prefer-arrow/prefer-arrow-functions": […
-
0
votes1
answer39
viewsA: Error testing in Registry/React Authentication
This test src/tests/Homepage.test.js is failing because you are testing a connect component with Redux but not passing the Store, I believe that if you do something like this the test will pass.…
-
0
votes0
answers52
viewsQ: Problems with Left Join with Eclipselink - Java
I have a problem with the following query: SELECT * FROM tipo_calibracao t LEFT OUTER JOIN fator_medio f ON (t.id = f.tipo_calibracao AND f.lote = 42) ORDER BY t.id ASC; Java: public…