forked from EA31337/EA31337-classes
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'v3.008-dev-new' into v3.007-dev-new-itemshistory-fixes.…
… After fixing errors and before clang-format.
- Loading branch information
Showing
167 changed files
with
5,129 additions
and
2,433 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
--- | ||
Checks: |- | ||
*, | ||
-altera-id-dependent-backward-branch, | ||
-altera-struct-pack-align, | ||
-altera-unroll-loops, | ||
-bugprone-branch-clone, | ||
-bugprone-copy-constructor-init, | ||
-bugprone-easily-swappable-parameters, | ||
-bugprone-integer-division, | ||
-bugprone-macro-parentheses, | ||
-bugprone-narrowing-conversions, | ||
-bugprone-redundant-branch-condition, | ||
-bugprone-reserved-identifier, | ||
-bugprone-string-constructor, | ||
-bugprone-unhandled-self-assignment, | ||
-cert-dcl37-c, | ||
-cert-dcl51-cpp, | ||
-cert-msc30-c, | ||
-cert-msc50-cpp, | ||
-cert-oop54-cpp, | ||
-cert-oop54-cpp, | ||
-clang-diagnostic-error, | ||
-concurrency-mt-unsafe, | ||
-cppcoreguidelines-avoid-c-arrays, | ||
-cppcoreguidelines-avoid-magic-numbers, | ||
-cppcoreguidelines-avoid-non-const-global-variables, | ||
-cppcoreguidelines-c-copy-assignment-signature, | ||
-cppcoreguidelines-init-variables, | ||
-cppcoreguidelines-macro-usage, | ||
-cppcoreguidelines-narrowing-conversions, | ||
-cppcoreguidelines-non-private-member-variables-in-classes, | ||
-cppcoreguidelines-owning-memory, | ||
-cppcoreguidelines-prefer-member-initializer, | ||
-cppcoreguidelines-pro-bounds-array-to-pointer-decay, | ||
-cppcoreguidelines-pro-type-member-init, | ||
-cppcoreguidelines-pro-type-union-access, | ||
-cppcoreguidelines-pro-type-vararg, | ||
-cppcoreguidelines-special-member-functions, | ||
-fuchsia-default-arguments-calls, | ||
-fuchsia-default-arguments-declarations, | ||
-fuchsia-overloaded-operator, | ||
-fuchsia-trailing-return, | ||
-google-explicit-constructor, | ||
-google-global-names-in-headers, | ||
-google-readability-braces-around-statements, | ||
-google-readability-casting, | ||
-google-runtime-int, | ||
-hicpp-avoid-c-arrays, | ||
-hicpp-braces-around-statements, | ||
-hicpp-braces-around-statements, | ||
-hicpp-exception-baseclass, | ||
-hicpp-explicit-conversions, | ||
-hicpp-member-init, | ||
-hicpp-multiway-paths-covered, | ||
-hicpp-named-parameter, | ||
-hicpp-no-array-decay, | ||
-hicpp-signed-bitwise,, | ||
-hicpp-special-member-functions, | ||
-hicpp-uppercase-literal-suffix, | ||
-hicpp-use-auto, | ||
-hicpp-use-equals-default, | ||
-hicpp-use-nullptr, | ||
-hicpp-vararg, | ||
-llvm-else-after-return, | ||
-llvm-header-guard,, | ||
-llvmlibc-callee-namespace, | ||
-llvmlibc-implementation-in-namespace,, | ||
-llvmlibc-restrict-system-libc-headers, | ||
-misc-definitions-in-headers, | ||
-misc-no-recursion, | ||
-misc-non-private-member-variables-in-classes, | ||
-misc-non-private-member-variables-in-classes, | ||
-misc-unconventional-assign-operator, | ||
-misc-unused-parameters,, | ||
-modernize-avoid-c-arrays, | ||
-modernize-raw-string-literal, | ||
-modernize-redundant-void-arg, | ||
-modernize-use-auto, | ||
-modernize-use-default-member-init, | ||
-modernize-use-equals-default, | ||
-modernize-use-nullptr, | ||
-modernize-use-nullptr, | ||
-modernize-use-trailing-return-type, | ||
-modernize-use-using, | ||
-performance-unnecessary-value-param, | ||
-readability-avoid-const-params-in-decls, | ||
-readability-braces-around-statements, | ||
-readability-braces-around-statements, | ||
-readability-const-return-type, | ||
-readability-container-size-empty, | ||
-readability-convert-member-functions-to-static, | ||
-readability-delete-null-pointer, | ||
-readability-else-after-return, | ||
-readability-identifier-length, | ||
-readability-implicit-bool-conversion, | ||
-readability-isolate-declaration, | ||
-readability-magic-numbers, | ||
-readability-make-member-function-const, | ||
-readability-named-parameter, | ||
-readability-redundant-access-specifiers, | ||
-readability-redundant-declaration, | ||
-readability-redundant-string-init, | ||
-readability-simplify-boolean-expr, | ||
-readability-uppercase-literal-suffix, | ||
FormatStyle: file | ||
HeaderFilterRegex: '.*' | ||
WarningsAsErrors: '' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.238.1/containers/ubuntu/.devcontainer/base.Dockerfile | ||
|
||
# [Choice] Ubuntu version (use ubuntu-22.04 or ubuntu-18.04 on local arm64/Apple Silicon): ubuntu-22.04, ubuntu-20.04, ubuntu-18.04 | ||
ARG VARIANT="jammy" | ||
FROM mcr.microsoft.com/vscode/devcontainers/base:0-${VARIANT} | ||
|
||
# [Optional] Uncomment this section to install additional OS packages. | ||
# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ | ||
# && apt-get -y install --no-install-recommends <your-package-list-here> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.