Skip to content

Commit 69d6491

Browse files
authored
Cleanup (#12)
1 parent bd80605 commit 69d6491

File tree

15 files changed

+216
-396
lines changed

15 files changed

+216
-396
lines changed

.devcontainer/Dockerfile

Lines changed: 0 additions & 17 deletions
This file was deleted.

.devcontainer/README.md

Lines changed: 0 additions & 53 deletions
This file was deleted.

.devcontainer/configuration.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
default_config:
22
logger:
3-
default: error
3+
default: info
44
logs:
55
custom_components.readme: debug
6+
7+
readme:

.devcontainer/custom_component_helper

Lines changed: 0 additions & 26 deletions
This file was deleted.

.devcontainer/devcontainer.json

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,23 @@
11
// See https://aka.ms/vscode-remote/devcontainer.json for format details.
22
{
3+
"image": "ludeeus/container:integration-debian",
4+
"name": "Blueprint integration development",
35
"context": "..",
4-
"dockerFile": "Dockerfile",
5-
"appPort": "8124:8123",
6-
"runArgs": [
7-
"-e",
8-
"GIT_EDTIOR='code --wait'"
6+
"appPort": [
7+
"9123:8123"
98
],
9+
"postCreateCommand": "container install",
1010
"extensions": [
1111
"ms-python.python",
1212
"github.vscode-pull-request-github",
13-
"tabnine.tabnine-vscode"
13+
"ryanluker.vscode-coverage-gutters",
14+
"ms-python.vscode-pylance"
1415
],
1516
"settings": {
17+
"files.eol": "\n",
1618
"editor.tabSize": 4,
1719
"python.pythonPath": "/usr/local/bin/python",
20+
"python.analysis.autoSearchPaths": false,
1821
"python.linting.pylintEnabled": true,
1922
"python.linting.enabled": true,
2023
"python.formatting.provider": "black",

.devcontainer/images/reopen.png

-7.99 KB
Binary file not shown.

.github/workflows/hassfest.yaml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.github/workflows/validate.yaml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Validate
2+
3+
4+
on:
5+
push:
6+
branches: [master]
7+
pull_request:
8+
branches: [master]
9+
schedule:
10+
- cron: "0 0 * * *"
11+
12+
jobs:
13+
validate-hassfest:
14+
runs-on: ubuntu-latest
15+
name: With hassfest
16+
steps:
17+
- name: Check out repository
18+
uses: actions/checkout@v2
19+
20+
- name: Hassfest validation
21+
uses: "home-assistant/actions/hassfest@master"
22+
23+
validate-hacs:
24+
runs-on: ubuntu-latest
25+
name: With HACS Action
26+
steps:
27+
- name: Check out repository
28+
uses: actions/checkout@v2
29+
30+
- name: HACS validation
31+
uses: hacs/action@main
32+
with:
33+
category: integration
34+
comment: false
35+
ignore: brands

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
.vs
1+
custom_components/hacs
2+
__pycache__

.vscode/tasks.json

Lines changed: 0 additions & 61 deletions
This file was deleted.

0 commit comments

Comments
 (0)