Salesforce Component Quality Standards Apply these checks to every LWC, Aura component, and Visualforce page you write or review. Section 1 — LWC Quality Standards 1.1 Data Access Pattern Selection Choose the right data access pattern before writing JavaScript controller code: | Use case | Pattern | Why | |---|---|---| | Read a single record reactively (follows navigation) | | Lightning Data Service — cached, reactive | | Standard CRUD form for a single object | or | Built-in FLS, CRUD, and accessibility | | Complex server query or filtered list | on a method | Allows caching; wire re-fires o…