AP_GPS: add checking of instance number before update with incoming data
[ardupilot.git] / .editorconfig
blob2ceadeedf2bd00f068f3e9fcd42975541d1abeb1
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 # These are the correct rules for APM coding standards, but fixing up old files causes git spam
17 trim_trailing_whitespace = false
18 insert_final_newline = true
20 [*.mk]
21 indent_style = tab
22 indent_size = 8
24 [{makefile,Makefile}]
25 indent_style = tab
26 indent_size = 8