From 6845a631961afd8f75a7df55af5f40a2d8f8ea1a Mon Sep 17 00:00:00 2001 From: Allan Bowe Date: Tue, 30 Nov 2021 16:31:26 +0000 Subject: [PATCH] chore: tidy up repo --- .editorconfig | 12 -------- CHANGELOG.md => .github/CHANGELOG.md | 0 .../CODE_OF_CONDUCT.md | 0 CONTRIBUTING.md => .github/CONTRIBUTING.md | 0 SECURITY.md => .github/SECURITY.md | 0 make_singlefile.sh | 29 ------------------- 6 files changed, 41 deletions(-) delete mode 100644 .editorconfig rename CHANGELOG.md => .github/CHANGELOG.md (100%) rename CODE_OF_CONDUCT.md => .github/CODE_OF_CONDUCT.md (100%) rename CONTRIBUTING.md => .github/CONTRIBUTING.md (100%) rename SECURITY.md => .github/SECURITY.md (100%) delete mode 100755 make_singlefile.sh diff --git a/.editorconfig b/.editorconfig deleted file mode 100644 index 23a6c32..0000000 --- a/.editorconfig +++ /dev/null @@ -1,12 +0,0 @@ -# http://editorconfig.org -root = true - -[*] -charset = utf-8 -indent_style = space -indent_size = 2 -end_of_line = lf -insert_final_newline = false -trim_trailing_whitespace = true - - diff --git a/CHANGELOG.md b/.github/CHANGELOG.md similarity index 100% rename from CHANGELOG.md rename to .github/CHANGELOG.md diff --git a/CODE_OF_CONDUCT.md b/.github/CODE_OF_CONDUCT.md similarity index 100% rename from CODE_OF_CONDUCT.md rename to .github/CODE_OF_CONDUCT.md diff --git a/CONTRIBUTING.md b/.github/CONTRIBUTING.md similarity index 100% rename from CONTRIBUTING.md rename to .github/CONTRIBUTING.md diff --git a/SECURITY.md b/.github/SECURITY.md similarity index 100% rename from SECURITY.md rename to .github/SECURITY.md diff --git a/make_singlefile.sh b/make_singlefile.sh deleted file mode 100755 index 3fa2851..0000000 --- a/make_singlefile.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/usr/bin/env bash - -# Concatenate all macros into a single file - -OUTFILE='./macrocore.sas' - -cat > $OUTFILE <<'EOL' -/** - @file - @brief Auto-generated file - @details - This file contains all the macros in a single file - which means it can be - 'included' in SAS with just 2 lines of code: - - filename mc url - "https://raw.githubusercontent.com/sasjs/core/main/macrocore.sas"; - %inc mc; - - The `build.sh` file in the https://github.com/sasjs/core repo - is used to create this file. - - @author Allan Bowe -**/ -EOL - -cat base/* >> $OUTFILE -cat meta/* >> $OUTFILE -cat metax/* >> $OUTFILE -cat viya/* >> $OUTFILE