Skip to content

Commit 5b5a2a8

Browse files
authored
fix(matter): spell check ignore for CI
1 parent 9b55b76 commit 5b5a2a8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

idf_component_examples/esp_matter_light/main/matter_light.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,8 @@ void setup() {
264264
cluster_t *color_control_cluster = cluster::get(endpoint, ColorControl::Id);
265265
attribute_t *current_x_attribute = attribute::get(color_control_cluster, ColorControl::Attributes::CurrentX::Id);
266266
attribute::set_deferred_persistence(current_x_attribute);
267-
attribute_t *current_y_attribute = attribute::get(color_control_cluster, ColorControl::Attributes::CurrentY::Id); // spell-check-ignore
267+
// spell-check-ignore
268+
attribute_t *current_y_attribute = attribute::get(color_control_cluster, ColorControl::Attributes::CurrentY::Id);
268269
attribute::set_deferred_persistence(current_y_attribute);
269270
attribute_t *color_temp_attribute = attribute::get(color_control_cluster, ColorControl::Attributes::ColorTemperatureMireds::Id);
270271
attribute::set_deferred_persistence(color_temp_attribute);

0 commit comments

Comments
 (0)