summaryrefslogtreecommitdiffstats
path: root/.gitattributes
AgeCommit message (Collapse)Author
2024-02-14Assorted cleanup of CI/packaging related code. (#16938)Austin S. Hemmelgarn
* Drop unused Dockerfile.test. It’s not been used for years, and it doesn’t even work at this point for it’s intended purpose. * Remove CodeClimate configuration. We’re not using it anymore, so there is no point to keeping the configuration around. * Remove the build_external directory. This isn’t used by any of our code AFAICT, and if it _is_ needed, it should actually be in some sub-directory of `tests` instead of a top-level directory whose name doesn’t even describe what it does. * Remove .gitattributes If there's any objection we can reinstate it. * Move coverity-scan.sh under packaging/utils * Move cmake files under packaging/cmake * Remove devcontainer * Fix up coverity script to run correctly from new location. --------- Co-authored-by: vkalintiris <vasilis@netdata.cloud>
2023-02-09generates dual ksy for njfv2 + fix for padding after page blocks (#14383)Timotej S
* add ability to generate different ksys * fix dist * fix page_block by metric count instead of till EOF
2019-07-05Add a .gitattributes file (#6381)Andrew Clayton
Currently this just sets the git diff driver for C source code files. Git can be told to apply language-specific rules when generating diffs. Enabling this for C source code files (*.c and *.h) means that function names are printed correctly. Specifically, doing so prevents "git diff" from mistakenly considering unindented goto labels as function names. This has the same effect as adding [diff "default"] xfuncname = "^[[:alpha:]$_].*[^:]$" to your git config file. e.g get @@ -10,7 +10,7 @@ int main(void) instead of @@ -10,7 +10,7 @@ again: Signed-off-by: Andrew Clayton <andrew@zeta.digital-domain.net>