about summary refs log tree commit diff
path: root/eslint
Commit message (Collapse)AuthorAgeFilesLines
* Add eslint rule to fix imports without the `#/` path alias (#5175)Samuel Newman2024-09-203-4/+44
|
* Unconditionally polyfill Intl.PluralRules for native (#4554)dan2024-06-182-29/+0
| | | | | | | * Revert "Fix Android startup perf regression (#4544)" This reverts commit e6213d7aa56faa6994a27bf127c63ded69e67d6f. * Force polyfill
* Use exact imports for icons (#4549)dan2024-06-182-0/+23
| | | | | * Use exact imports for icons * Add a lint rule
* Fix Android startup perf regression (#4544)dan2024-06-182-0/+29
|
* [Statsig] Make gate checks lazily (#3594)dan2024-04-181-0/+1
|
* Fix useGate lint rule (#3486)dan2024-04-111-7/+6
|
* [Statsig] Typecheck gates (#3467)dan2024-04-102-0/+32
| | | | | | | * Typecheck gates * Lint against untyped useGate() * Alphabetic
* Enforce that text is wrapped in <Text>, remaining cases (#3421)dan2024-04-052-6/+527
| | | | | | | | | | | | | | | | | | | | | * Toggle.Button -> Toggle.ButtonWithText * Simplify Prompt.Cancel/Action * Move lines down for better diff * Remove ButtonWithText * Simplify types * Enforce Button/ButtonText nesting * Add suggested wrapper in linter error * Check <Trans> ancestry too * Also check literals * Rm ts-ignore
* Enforce Text suffix for Text-rendering components (#3407)dan2024-04-042-1/+102
| | | | | | | | | | | * Rm unused * Add Text suffix to Title/Description * Add Text suffix to text components * Add Text suffix to props * Validate Text components returns
* Lint against strings without wrapping <Text> (#3398)dan2024-04-043-0/+541
* Add a rudimentary rule * Get the rule passing * Support special-casing text props * More tests