mirror of
https://github.com/esphome/esphome.git
synced 2025-09-16 18:22:22 +01:00
Avoid non-const globals and enable clang-tidy check (#1892)
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
namespace esphome {
|
||||
namespace sensor {
|
||||
|
||||
static const char *TAG = "sensor.automation";
|
||||
static const char *const TAG = "sensor.automation";
|
||||
|
||||
} // namespace sensor
|
||||
} // namespace esphome
|
||||
|
@@ -5,7 +5,7 @@
|
||||
namespace esphome {
|
||||
namespace sensor {
|
||||
|
||||
static const char *TAG = "sensor.filter";
|
||||
static const char *const TAG = "sensor.filter";
|
||||
|
||||
// Filter
|
||||
uint32_t Filter::expected_interval(uint32_t input) { return input; }
|
||||
|
@@ -4,7 +4,7 @@
|
||||
namespace esphome {
|
||||
namespace sensor {
|
||||
|
||||
static const char *TAG = "sensor";
|
||||
static const char *const TAG = "sensor";
|
||||
|
||||
const char *state_class_to_string(StateClass state_class) {
|
||||
switch (state_class) {
|
||||
|
Reference in New Issue
Block a user