AP_TECS: Remove duplicate setting of flare pitch upper limit
[ardupilot.git] / .editorconfig
blob2c73f926bdb5ab2c4cd50c905a602be2b3efa665
1 # This file provide reference settings for the APM code conventions
2 # There are plug-ins available for nearly every text editor to automatically
3 # respect the conventions contained within this file.
5 # Please see editorconfig.org for complete information.
7 # If you find errors in this file, please send a pull-request with a fix.
9 root = true
11 [*]
12 indent_style = space
13 indent_size = 4
14 end_of_line = lf
15 charset = utf-8
16 trim_trailing_whitespace = false # These are the correct rules for APM coding standards, but fixing up old files causes git spam
17 insert_final_newline = false
19 [*.mk]
20 indent_style = tab
21 indent_size = 8
23 [{makefile,Makefile}]
24 indent_style = tab
25 indent_size = 8