Skip to content

chore: Rename directories from UPPERCASE to lowercase. #6

@nedseb

Description

@nedseb

What

Rename all top-level directories from UPPERCASE to lowercase for consistency with the other STeaMi repos.

Before After
BASIC/ basic/
BATTERY/ battery/
BLE/ ble/
BUTTON/ button/
DEMO/ demo/
GAME/ game/
LED/ led/
ROBOT/ robot/

Why

All other STeaMi repos use lowercase directory names. UPPERCASE is unusual for a Python/MicroPython project and inconsistent with the conventions.

Blocked by

How

git mv BASIC basic
git mv BATTERY battery
git mv BLE ble
git mv BUTTON button
git mv DEMO demo
git mv GAME game
git mv LED led
git mv ROBOT robot
git commit -m "chore: Rename directories to lowercase."

Note: on case-insensitive filesystems (macOS, Windows), git mv may need a two-step rename via a temporary name: git mv BASIC tmp && git mv tmp basic.

After

Update README.md to reflect the new directory names.

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions