Avoid overriding code you don't own
October 10, 2019
Don’t override third party libraries. It’ll bite the team in the future when the library gets updated. If you really need a different behavior, fork it and use the fork. Explicit > Implicit.
October 10, 2019
Don’t override third party libraries. It’ll bite the team in the future when the library gets updated. If you really need a different behavior, fork it and use the fork. Explicit > Implicit.