├── .gitignore ├── README.md ├── custom_components └── default_config_exclude │ ├── __init__.py │ └── manifest.json └── hacs.json /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturpragacz/hass-cc-default-config-exclude/HEAD/README.md -------------------------------------------------------------------------------- /custom_components/default_config_exclude/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturpragacz/hass-cc-default-config-exclude/HEAD/custom_components/default_config_exclude/__init__.py -------------------------------------------------------------------------------- /custom_components/default_config_exclude/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturpragacz/hass-cc-default-config-exclude/HEAD/custom_components/default_config_exclude/manifest.json -------------------------------------------------------------------------------- /hacs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arturpragacz/hass-cc-default-config-exclude/HEAD/hacs.json --------------------------------------------------------------------------------