aboutsummaryrefslogtreecommitdiff
path: root/.editorconfig
diff options
context:
space:
mode:
authorDario Pagani <>2020-08-15 11:19:02 +0200
committerDario Pagani <>2020-08-15 11:19:02 +0200
commit16bfd88198de32bd747fcc0d2f029890994c3d8d (patch)
treef738c10429d0f19ae59a3d1234badad6d5abc08b /.editorconfig
parentb5e6030e47b2c8361f710da649421753c2406f1c (diff)
downloadhid-tminit-16bfd88198de32bd747fcc0d2f029890994c3d8d.tar.gz
hid-tminit-16bfd88198de32bd747fcc0d2f029890994c3d8d.zip
Driver written, will it work?
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig17
1 files changed, 17 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 0000000..ceb6e23
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,17 @@
+[*]
+charset = utf-8
+insert_final_newline = true
+
+# The settings for C (*.c and *.h) files are mirrored in .clang-format. Keep
+# them in sync.
+[*.{c,h,sh,perl,pl,pm,txt}]
+indent_style = tab
+tab_width = 8
+
+[Makefile]
+indent_style = tab
+tab_width = 8
+
+[*.py]
+indent_style = space
+indent_size = 4