Skip to content

Add GitHub usage and perspective #528

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 7, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion patterns/1-initial/modular-code.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ and therefore promotes external contributions and onboarding of newcomers.
1. Develop automated testing protection.
1. Document usage of modules.
1. Introduce semantic versioning.
1. Committing to not breaking backwards compatibility.
1. Use a dependency management software such as pip, nuget, npm.
* More information and techniques are available from the book *[Working Effectively with Legacy Code](https://www.oreilly.com/library/view/working-effectively-with/0131177052/)* by Michael Feathers and *[Refactoring: Improving the Design of Existing Code](https://martinfowler.com/books/refactoring.html)* by Martin Fowler.

Expand All @@ -72,10 +73,13 @@ and therefore promotes external contributions and onboarding of newcomers.
* Modular code helps Agile: For the same functionality, you'll need to change more bits, but the modularity helps to materialize sooner (earlier and more reliable validations) and to prioritize the most relevant bits (separate value from waste).
* Modular efforts increase autonomy and accountability for Engineers, which can raise satisfaction and quality.
* Modular code makes the pathway to InnerSource and open source smoother.
* Modular code gets used more often, and that diverse set of users often leads to higher quality code.

## Known Instances

Elements of the resolution have been proven by various companies.
Elements of the resolution have been proven by various companies such as

- GitHub

## Status

Expand Down