java
Installation
SKILL.md
Google Java Style Guide
Official Google Java coding standards for consistent, maintainable code.
Golden Rules
- 2-space indentation — no tabs
- Column limit: 100 characters
- Use
@Overridewhenever applicable - No wildcard imports — import specific types
- Braces required even for single-statement blocks
- One top-level class per file
- Prefer interfaces for type definitions