Skip to content

Commit

Permalink
Exception for clang-tidy in examples
Browse files Browse the repository at this point in the history
Signed-off-by: Simone Orru <simone.orru@secomind.com>
  • Loading branch information
sorru94 committed Jan 18, 2024
1 parent d667e4c commit d331afd
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion examples/aggregates/main/src/wifi_cfg.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void wifi_init(void)
ESP_ERROR_CHECK(esp_event_loop_create_default());
esp_netif_create_default_wifi_sta();

wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT();
wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT(); // NOLINT
ESP_ERROR_CHECK(esp_wifi_init(&cfg));

esp_event_handler_instance_t instance_any_id = NULL;
Expand Down
2 changes: 1 addition & 1 deletion examples/datastreams/main/src/wifi_cfg.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void wifi_init(void)
ESP_ERROR_CHECK(esp_event_loop_create_default());
esp_netif_create_default_wifi_sta();

wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT();
wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT(); // NOLINT
ESP_ERROR_CHECK(esp_wifi_init(&cfg));

esp_event_handler_instance_t instance_any_id = NULL;
Expand Down
2 changes: 1 addition & 1 deletion examples/encryption/main/src/wifi_cfg.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void wifi_init(void)
ESP_ERROR_CHECK(esp_event_loop_create_default());
esp_netif_create_default_wifi_sta();

wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT();
wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT(); // NOLINT
ESP_ERROR_CHECK(esp_wifi_init(&cfg));

esp_event_handler_instance_t instance_any_id = NULL;
Expand Down
2 changes: 1 addition & 1 deletion examples/non_volatile_storage/main/src/wifi_cfg.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void wifi_init(void)
ESP_ERROR_CHECK(esp_event_loop_create_default());
esp_netif_create_default_wifi_sta();

wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT();
wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT(); // NOLINT
ESP_ERROR_CHECK(esp_wifi_init(&cfg));

esp_event_handler_instance_t instance_any_id = NULL;
Expand Down
2 changes: 1 addition & 1 deletion examples/properties/main/src/wifi_cfg.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void wifi_init(void)
ESP_ERROR_CHECK(esp_event_loop_create_default());
esp_netif_create_default_wifi_sta();

wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT();
wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT(); // NOLINT
ESP_ERROR_CHECK(esp_wifi_init(&cfg));

esp_event_handler_instance_t instance_any_id = NULL;
Expand Down
2 changes: 1 addition & 1 deletion examples/registration/main/src/wifi_cfg.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void wifi_init(void)
ESP_ERROR_CHECK(esp_event_loop_create_default());
esp_netif_create_default_wifi_sta();

wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT();
wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT(); // NOLINT
ESP_ERROR_CHECK(esp_wifi_init(&cfg));

esp_event_handler_instance_t instance_any_id = NULL;
Expand Down
2 changes: 1 addition & 1 deletion examples/toggle_led/main/src/wifi_cfg.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void wifi_init(void)
ESP_ERROR_CHECK(esp_event_loop_create_default());
esp_netif_create_default_wifi_sta();

wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT();
wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT(); // NOLINT
ESP_ERROR_CHECK(esp_wifi_init(&cfg));

esp_event_handler_instance_t instance_any_id = NULL;
Expand Down

0 comments on commit d331afd

Please sign in to comment.