Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 512 Bytes

package_names.md

File metadata and controls

15 lines (10 loc) · 512 Bytes

Pattern: Invalid package name

Issue: -

Description

Package names should be all lowercase, with underscores to separate words, just_like_this. Use only basic Latin letters and Arabic digits: [a-z0-9_]. Also, make sure the name is a valid Dart identifier -- that it doesn't start with digits and isn't a reserved word.

Further Reading