diff options
author | Frank Benkstein <frank@benkstein.net> | 2018-10-22 15:41:12 -0700 |
---|---|---|
committer | Wouter van Oortmerssen <aardappel@gmail.com> | 2018-10-22 15:41:12 -0700 |
commit | efbb11e09354147c0716ba7a599723f2eb1526e2 (patch) | |
tree | 5f35b246b9c7d4b51ec1a5b3634a1990134c72ae /.editorconfig | |
parent | 5c0f914f3859ae3920f7be6a618c17a47433bd85 (diff) | |
download | flatbuffers-efbb11e09354147c0716ba7a599723f2eb1526e2.tar.gz flatbuffers-efbb11e09354147c0716ba7a599723f2eb1526e2.tar.bz2 flatbuffers-efbb11e09354147c0716ba7a599723f2eb1526e2.zip |
CI check generate code (#4998)
* call reflection code generation from tests
This simplifies instructions to contributors so they don't forget to update
reflection code.
* add error handling to generate_code scripts
Let them propagate their errors instead of swallowing them so they show
up when called in CI.
* apply editorconfig to shell scripts
* use ordered map in dart codegen
Using an unordered map in the codegen can lead to spurious diffs in the
generated dart code.
* add CI check for generate_code being run
* update reflection_generated.h
* disable diff-check for monster_test.bfbs
Work around #5008.
Diffstat (limited to '.editorconfig')
-rw-r--r-- | .editorconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.editorconfig b/.editorconfig index c5a1b6c8..be31d8c0 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,5 +1,5 @@ root = true -[*.{cpp,cc,h}] +[*.{cpp,cc,h,sh}] end_of_line = LF indent_style = space indent_size = 2 |