Skip to content

Files

Latest commit

 

History

History
22 lines (16 loc) · 398 Bytes

enforce-plural-rules.md

File metadata and controls

22 lines (16 loc) · 398 Bytes

Pattern: Missing plural rule

Issue: -

Description

Enforces certain plural rules to always be specified/forbidden in a message.

enum LDML {
  zero = 'zero',
  one = 'one',
  two = 'two',
  few = 'few',
  many = 'many',
  other = 'other',
}

Further Reading