1. @performance/hp-arkts-no-use-any-export-current
  2. 避免使用export * 导出当前module中定义的类型和数据
  3. @performance/hp-arkts-no-use-any-export-other
  4. 避免使用export * 导出其他module中定义的类型和数据
  5. @performance/hp-arkui-avoid-empty-callback
  6. 避免设置空的系统回调监听
  7. @performance/hp-arkui-avoid-update-auto-state-var-in-aboutToReuse
  8. 避免在aboutToReuse中对自动更新值的状态变量进行更新
  9. @performance/hp-arkui-combine-same-arg-animateto
  10. 建议动画参数相同时使用同一个animateTo
  11. @performance/hp-arkui-image-async-load
  12. 建议大图片使用异步加载
  13. @performance/hp-arkui-load-on-demand
  14. 建议使用按需加载
  15. @performance/hp-arkui-no-func-as-arg-for-reusable-component
  16. 避免使用函数作为复用的自定义组件创建时的入参
  17. @performance/hp-arkui-no-state-var-access-in-loop
  18. 避免在for、while等循环逻辑中频繁读取状态变量
  19. @performance/hp-arkui-no-stringify-in-lazyforeach-key-generator
  20. 在使用LazyForEach进行组件复用的key生成器函数里,不要使用stringify
  21. @performance/hp-arkui-reduce-pangesture-distance
  22. 建议设置合理的拖动距离
  23. @performance/hp-arkui-remove-container-without-property
  24. 建议尽量减少视图嵌套层次
  25. @performance/hp-arkui-remove-redundant-nest-container
  26. 避免冗余的嵌套
  27. @performance/hp-arkui-remove-redundant-state-var
  28. 建议移除不关联UI组件的状态变量设置
  29. @performance/hp-arkui-remove-unchanged-state-var
  30. 建议移除未改变的状态变量设置
  31. @performance/hp-arkui-replace-nested-reusable-component-by-builder
  32. 建议使用@Builder替代嵌套的自定义组件
  33. @performance/hp-arkui-set-cache-count-for-lazyforeach-grid
  34. 建议在Grid下使用LazyForEach时设置合理的cacheCount
  35. @performance/hp-arkui-suggest-cache-avplayer
  36. 建议缓存AVPlayer实例減少起播时延
  37. @performance/hp-arkui-suggest-reuseid-for-if-else-reusable-component
  38. 建议使用reuseId标记不同结构的组件构成
  39. @performance/hp-arkui-suggest-use-effectkit-blur
  40. 建议使用effectKit.createEffect实现模糊效果
  41. @performance/hp-arkui-suggest-use-get-anonymousid-async
  42. 建议在主线程中通过异步获取IFAA免密认证的匿名化ID
  43. @performance/hp-arkui-use-attributeUpdater-control-refresh-scope
  44. 建议使用attributeUpdater精准控制组件属性的刷新
  45. @performance/hp-arkui-use-grid-layout-options
  46. 建议在指定位置时使用GridLayoutOptions提升Grid性能
  47. @performance/hp-arkui-use-id-in-get-resource-sync-api
  48. 建议在使用API getColorSync和getStringSync时建议使用带id版本
  49. @performance/hp-arkui-use-id-in-get-resource-sync-api
  50. 建议在使用API getColorSync和getStringSync时建议使用带id版本
  51. @performance/hp-arkui-use-local-var-to-replace-state-var
  52. 建议使用临时变量替换状态变量
  53. @performance/hp-arkui-use-object-link-to-replace-prop
  54. 建议使用@ObjectLink代替@Prop减少不必要的深拷贝
  55. @performance/hp-arkui-use-onAnimationStart-for-swiper-preload
  56. 建议Swiper预加载机制搭配 OnAnimationStart 接口回调使用
  57. @performance/hp-arkui-use-reusable-component
  58. 建议复杂组件的定义,尽量使用组件复用
  59. @performance/hp-arkui-use-row-column-to-replace-flex
  60. 建议使用Column/Row替代Flex
  61. @performance/hp-arkui-use-scale-to-replace-attr-animateto
  62. 建议组件布局改动时使用图形变换属性动画
  63. @performance/hp-arkui-use-taskpool-for-web-request
  64. 建议网络资源的请求和返回使用taskpool线程池异步处理
  65. @performance/hp-arkui-use-transition-to-replace-animateto
  66. 建议组件转场动画使用transition
  67. @performance/hp-arkui-use-word-break-to-replace-zero-width-space
  68. 建议使用word-break替换零宽空格(\u200b)
  69. @performance/hp-performance-no-closures
  70. 建议函数内部变量尽量使用参数传递
  71. @performance/lottie-animation-destroy-check
  72. 该规则检测使用lottie加载的动画是否都正确销毁
  73. @performance/no-high-loaded-frame-rate-range
  74. 不允许锁定最高帧率运行
  75. @performance/number-init-check
  76. 该规则将检查number是否正确使用
  77. @performance/sparse-array-check
  78. 建议避免使用稀疏数组
  79. @performance/start-window-icon-check
  80. 启动页图标分辨率建议不超过256 * 256
  81. @performance/timezone-interface-check
  82. 在获取非本地时间时,建议使用统一标准的i18n.Calendar接口获取时间时区相关信息
  83. @performance/typed-array-check
  84. 数值数组推荐使用TypedArray
  85. @performance/waterflow-data-preload-check
  86. 建议对waterflow子组件进行数据预加载
  87. @performance/multiple-associations-state-var-check
  88. 多个组件关联同一数据时,建议在组件中使用@Watch装饰器添加更新条件,避免不必要的组件更新
  89. @performance/constant-property-referencing-check-in-loops
  90. 在循环如需频繁访问某个常量,且该属性引用常量在循环中不会改变,建议提取到循环外部,减少属性访问的次数
  91. @performance/foreach-args-check
  92. 建议在ForEach参数中设置keyGenerator
  93. @previewer/mandatory-default-value-for-local-initialization
  94. 如果组件的属性支持本地初始化,需要设置一个合法的不依赖运行时的默认值
  95. @previewer/no-page-method-on-preview-component
  96. 禁止在非路由组件上实例化onPageShow、onPageHide、onBackPress等页面级方法
  97. @previewer/no-unallowed-decorator-on-root-component
  98. 对于@Entry组件,不允许使用@Consume、@Link、@ObjectLink、@Prop注解;对于@Preview组件,建议使用一个定义了完整的、合法的、不依赖运行时的默认值的父组件作为预览该组件的容器
  99. @cross-device-app-dev/color-value
  100. 颜色值应当使用“$r”从color.json中引用,以适配不同的系统颜色模式,禁止使用固定的值
  101. @cross-device-app-dev/font-size-unit
  102. 字体大小单位建议使用fp,以适配系统字体设置

龙儿筝
1 声望0 粉丝