X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=.editorconfig;h=0583349e41897c80b09d1f003a999c0fbbaa7d17;hb=5bed54511389c0af1414b1986fc294b72ec86a30;hp=f4e17c9d054fc9d3fc7b578868739f5b449de1da;hpb=be616121b8c3ba23e835a6c32aa3b6cb27d7fba1;p=platform%2Fupstream%2Fgstreamer.git diff --git a/.editorconfig b/.editorconfig index f4e17c9..0583349 100644 --- a/.editorconfig +++ b/.editorconfig @@ -6,3 +6,25 @@ end_of_line = lf indent_style = space trim_trailing_whitespace = true insert_final_newline = true +indent_size = 2 +max_line_length = 80 + +# PEP 8 +[*.py] +indent_size = 4 +max_line_length = 79 + +# rustfmt defaults +[*.rs] +indent_size = 4 +max_line_length = 100 + +# From gst-examples +[*.js] +indent_size = 4 +max_line_length = 80 + +[{Makefile,Makefile.am}] +indent_style = tab +indent_size = tab +tab_width = 8