I am doing a code review for a software system. I noticed that some user's story and even sub-tasks when are implemented | modified they result in a large code commit and usually end up in changing tens of source code files (java classes, javascript files, HTML, etc)
I expect that when someone implements a subtask or a single user story will only require changing few components. Sometimes the commit can have up to 60 files changed.
If you know for sure you modified only specific classes/methods, and then as a result of it, you had to edit all the other places, then yes, the code is tightly coupled.
Refer here.