prefer-semver-version
Warns when a package version does not match the semantic versioning approach.
Example
❌ Bad:
pubspec.yaml
name: some_package
description: ...
version: 1 # LINT: The version format should follow semantic versioning.
✅ Good:
pubspec.yaml
name: some_package
description: ...
version: 1.0.0