-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Repo cleanup and maintenance #269
Changes from 16 commits
08b56b3
644e734
8ec8a76
ed4b030
6ba0101
37d2997
0cc6719
3d207c5
33663df
ba60c13
62922b0
4163ba9
1059acc
c693f1f
374bd28
c1db5b7
8b9f1e5
394de5e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# EditorConfig is awesome: https://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
# Unix-style newlines with a newline ending every file | ||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_size = 2 | ||
indent_style = space | ||
insert_final_newline = true | ||
YesThatAllen marked this conversation as resolved.
Show resolved
Hide resolved
|
||
trim_trailing_whitespace = true | ||
|
||
# json files don't want a final newline | ||
[*.json] | ||
insert_final_newline = false | ||
|
||
# 4 space indentation | ||
[*.py] | ||
indent_size = 4 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If the default for the repo is 4 spaces, we can remove this fallout. |
||
|
||
# Tab indentation (no size specified) | ||
[*.md] | ||
trim_trailing_whitespace = false |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,5 +6,3 @@ labels: '' | |
assignees: '' | ||
|
||
--- | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,40 @@ | ||
sandbox/ | ||
# Ignore common local files | ||
.DS_Store | ||
|
||
# VisualStudio | ||
.vs/ | ||
|
||
# VisualStudio code | ||
# https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore | ||
.vscode/* | ||
!.vscode/settings.json | ||
!.vscode/tasks.json | ||
!.vscode/launch.json | ||
!.vscode/extensions.json | ||
!.vscode/*.code-snippets | ||
|
||
# Local Settings | ||
compose.env | ||
grafana.env | ||
pypowerwall.env | ||
telegraf.local | ||
|
||
# Local Dev files | ||
*.bak | ||
backups/*.tgz | ||
influxdb/run-once-*.sql.done | ||
|
||
sandbox/ | ||
|
||
grafana/alerting/ | ||
grafana/csv/ | ||
grafana/grafana.db | ||
grafana/plugins/ | ||
|
||
influxdb/meta/ | ||
influxdb/wal/ | ||
influxdb/data/ | ||
pypowerwall.env | ||
|
||
weather/uploadtest.sh | ||
weather/weather411.conf | ||
weather/weather411.conf.orig | ||
.DS_Store | ||
/.vs |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
theme: jekyll-theme-cayman | ||
theme: jekyll-theme-cayman |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# Environment variables for docker compose. | ||
# | ||
# | ||
# GRAFANAUSER - may need to be adjusted for cases such as rootless docker. | ||
# See issue #22, | ||
# See issue #22, | ||
# https://github.com/jasonacox/Powerwall-Dashboard/issues/22#issuecomment-1253076441) | ||
GRAFANAUSER="1000:1000" | ||
GRAFANAUSER="1000:1000" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -152,4 +152,3 @@ bind-address = "127.0.0.1:8088" | |
[tls] | ||
min-version = "" | ||
max-version = "" | ||
|
This file was deleted.
YesThatAllen marked this conversation as resolved.
Show resolved
Hide resolved
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,4 +47,3 @@ | |
</script> | ||
</body> | ||
</html> | ||
|
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jasonacox / @mcbirse I'm just assuming 2 spaces vs tabs is your preference.
Not every file matches this setting.
The editorconfig does NOT force changes, but does attempt to tell the editor how it should behave when you're adding new code.
Please make sure this is your preference before squashing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have a mix, but 4 spaces is my preference (as seen in most of the *py, *sh and *yml) but I know we have 2 spaces in *conf.