From 3a00d56c3921b59991036acaaeb9013fc29c1e59 Mon Sep 17 00:00:00 2001 From: Markus Zehnder Date: Wed, 1 Nov 2023 19:53:19 +0100 Subject: [PATCH] chore: cleanup 3rd-party directory Remove unused files --- 3rd-party/.clang-format | 13 -------- 3rd-party/CONTRIBUTING.md | 68 --------------------------------------- 3rd-party/cpplint.sh | 1 - 3 files changed, 82 deletions(-) delete mode 100644 3rd-party/.clang-format delete mode 100644 3rd-party/CONTRIBUTING.md delete mode 100755 3rd-party/cpplint.sh diff --git a/3rd-party/.clang-format b/3rd-party/.clang-format deleted file mode 100644 index 1da97a3..0000000 --- a/3rd-party/.clang-format +++ /dev/null @@ -1,13 +0,0 @@ -# UC project style configuration -# -# https://clang.llvm.org/docs/ClangFormatStyleOptions.html - -BasedOnStyle: Google - -IndentWidth: 4 -ColumnLimit: 120 - -AccessModifierOffset: -3 -AlignConsecutiveDeclarations: true - -AllowShortFunctionsOnASingleLine: Inline diff --git a/3rd-party/CONTRIBUTING.md b/3rd-party/CONTRIBUTING.md deleted file mode 100644 index d40b3a6..0000000 --- a/3rd-party/CONTRIBUTING.md +++ /dev/null @@ -1,68 +0,0 @@ -# Contributing - -Thanks for taking the time to contribute! - -Found a bug, typo, missing feature or a description that doesn't make sense or needs clarification? -Great, please let us know! - -### Bug Reports :bug: - -If you find a bug, please search for it first in the [GitHub issues](https://github.com/unfoldedcircle/remote-ui/issues), -and if it isn't already tracked, [create a new issue](https://github.com/unfoldedcircle/remote-ui/issues/new/choose). - -### Pull Requests - -**Any pull request needs to be reviewed and approved by the Unfolded Circle development team.** - -We love contributions from everyone. - -⚠️ If you plan to make substantial changes, we kindly ask you, that you please reach out to us first. -Either by opening a feature request describing your proposed changes before submitting code, or by contacting us on -one of the other [feedback channels](#feedback-speech_balloon). - -Since this software is being used on the embedded Remote Two device, we have to make sure it remains -compatible with the embedded runtime environment and runs smoothly. - -With that out of the way, here's the process of creating a pull request and making sure it passes the automated tests: - -### Contributing Code :bulb: - -1. Fork the repo. - -2. Make your changes or enhancements (preferably on a feature-branch). - - Contributed code must be licensed under the GNU General Public License 3.0 or later (GPL-3.0-or-later). - It is required to add a boilerplate copyright notice to the top of each file: - - ``` - // Copyright (c) {year} {person OR org} <{email}> - // SPDX-License-Identifier: GPL-3.0-or-later - ``` - -3. Make sure your changes build: - -4. Make sure your changes make the lints pass: - ```shell - cpplint.sh - ``` - -5. Make sure your changes follow the project's code style. - You can find the stlye in the repository: [.clang-format](.clang-format) - -6. Push to your fork. - -7. Submit a pull request. - -At this point we will review the PR and give constructive feedback. -This is a time for discussion and improvements, and making the necessary changes will be required before we can -merge the contribution. - -### Feedback :speech_balloon: - -There are a few different ways to provide feedback: - -- [Create a new issue](https://github.com/unfoldedcircle/remote-ui/issues/new/choose) -- [Reach out to us on Twitter](https://twitter.com/unfoldedcircle) -- [Visit our community forum](http://unfolded.community/) -- [Chat with us in our Discord channel](http://unfolded.chat/) -- [Send us a message on our website](https://unfoldedcircle.com/contact) \ No newline at end of file diff --git a/3rd-party/cpplint.sh b/3rd-party/cpplint.sh deleted file mode 100755 index 25912b0..0000000 --- a/3rd-party/cpplint.sh +++ /dev/null @@ -1 +0,0 @@ -cpplint --filter=-build/include_subdir,-build/c++11 --linelength=120 --root=src --recursive src