Pattern: Inconsistent indentation
Issue: -
This rule reports enforces a consistent indentation style. The default style is 2 spaces.
# eslint yml/indent: 'error'
# ✓ GOOD
- a:
b
c:
- d
- e: f
g: h
# ✗ BAD
- a:
b
c:
- d
- e: f
g: h