DoozyX / clang-format-lint-action

This action checks if the source code matches the .clang-format file.
MIT License
129 stars 46 forks source link

Fix passing arguments with spaces #12

Closed hatstand closed 3 years ago

hatstand commented 3 years ago

Allows usage of full style specs like style: "{BasedOnStyle: Google, DerivePointerBinding: false, Standard: Cpp11}"

DoozyX commented 3 years ago

Thank you.

Flamefire commented 3 years ago

The use of $* was actually intentional to allow usage like: source: 'extras libs tests' in the yaml file. Wouldn't your use case also be covered by e.g. style: "'{BasedOnStyle: Google, DerivePointerBinding: false, Standard: Cpp11}'", i.e. an extra quoting?