Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 766 Bytes

CONTRIBUTING.md

File metadata and controls

23 lines (19 loc) · 766 Bytes

Contributing guidelines

Welcome to TheAlgorithms/Dart!

Contributing

  • Fork this repo.
  • If Already Forked, Then make sure to sync your fork.
  • Make some changes and pull a request
  • Automated tests are run on all pull requests
    • dart analyze is mandatory
    • dart format is mandatory
    • dart test is recommended

New File Name guidelines

  • Use lowercase words with "_" as separator
  • For example:
MyNewAlgorithm.dart     is incorrect
my_new_algorithm.dart   is correct format

Writer @StepfenShawn, Feb 2020. Updated @akashgk, Oct 2022.