Closed
Description
DO name libraries and source files using lowercase_with_underscores.
Some file systems are not case-sensitive, so many projects require filenames to be all lowercase. Using a separate character allows names to still be readable in that form. Using underscores as the separator ensures that the name is still a valid Dart identifier, which may be helpful if the language later supports symbolic imports.
GOOD:
slider_menu.dart
file_system.dart
library peg_parser;
BAD:
SliderMenu.dart
filesystem.dart
library peg-parser;