Alot of hidden sensors

Hello!
I am new to Home Assistant and I am wondering about sensors.

I use Qubino Flush 2 Relays and in Home Assistant i get alot of sensors from these devices.
Some of them I want to use like the sensor that shows energy consumtion.
sensor.decklight_energy_2_0_3 (I renamed the devices in OZW)

But now I have a huge file with sensors i want to hide and I am wondering if this is the correct way to handle it?

this is my hidden.yaml and I think this is a pretty messy way to handle it.

sensor.decklight_previous_reading_2_1_3:
  hidden: true
sensor.decklight_previous_reading_2_1_2:
  hidden: true
sensor.decklight_previous_reading_2_1:
  hidden: true
sensor.decklight_energy_2_0:
  hidden: true
sensor.decklight_energy_2_0_2:
  hidden: true
sensor.decklight_energy_2_0_3:
  hidden: true
sensor.decklight_power_2_8:
  hidden: true
sensor.decklight_previous_reading_2_9:
  hidden: true

sensor.main_entrance_lighting_power_3_8:
  hidden: true
sensor.main_entrance_lighting_temperature_3_1:
  hidden: true
sensor.main_entrance_lighting_previous_reading_3_1:
  hidden: true
sensor.main_entrance_lighting_previous_reading_3_9:
  hidden: true
sensor.main_entrance_lighting_exporting_3_32_3:
  hidden: true
sensor.main_entrance_lighting_exporting_3_32_2:
  hidden: true
sensor.main_entrance_lighting_exporting_3_32:
  hidden: true
sensor.main_entrance_lighting_energy_3_0:
  hidden: true
sensor.main_entrance_lighting_energy_3_0_2:
  hidden: true
sensor.main_entrance_lighting_energy_3_0_3:
  hidden: true
sensor.main_entrance_lighting_interval_3_2:
  hidden: true
sensor.main_entrance_lighting_interval_3_8:
  hidden: true
sensor.main_entrance_lighting_interval_3_10:
  hidden: true

Replacing your default view will make everything not show up by default. It also means, however, that you need to add any new devices to a specific group/view before they will show on the front end.

Thank you for your reply!