Move battery script to its own project

Start new Python project for battery script
This commit is contained in:
Martin Blazik
2022-07-30 11:58:45 +02:00
parent 9f38b89bfd
commit ea2162cbe2
18 changed files with 512 additions and 192 deletions

32
src/battery/.editorconfig Normal file
View File

@@ -0,0 +1,32 @@
# defaults
[*]
charset=utf-8
trim_trailing_whitespace = true
insert_final_newline = true
end_of_line=lf
indent_size = 4
indent_style = space
[Makefile]
indent_style = tab
[*.xml]
continuation_indent_size = 8
# YAML
# http://yaml.org/spec/1.2/2009-07-21/spec.html#id2576668
[*.{yaml,yml}]
indent_size = 2
# Shell
# https://google.github.io/styleguide/shell.xml#Indentation
[*.{bash,sh,zsh}]
indent_size = 2
# HTML
# https://google.github.io/styleguide/htmlcssguide.xml#General_Formatting_Rules
[*.{htm,html}]
indent_size = 2
[*.json]
indent_size=2