diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..e33526f --- /dev/null +++ b/.editorconfig @@ -0,0 +1,24 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +indent_style = space +indent_size = 4 +trim_trailing_whitespace = true + +[*.md] +trim_trailing_whitespace = false + +[*.{yml,yaml}] +indent_size = 2 + +[*.{pug,styl}] +indent_size = 2 + +[docker-compose.yml] +indent_size = 4 + +[Makefile] +indent_style = tab diff --git a/assets/js/clickable-maker.js b/assets/js/clickable-maker.js index e765727..f24bf27 100644 --- a/assets/js/clickable-maker.js +++ b/assets/js/clickable-maker.js @@ -11,6 +11,6 @@ export default function() { // Middle click was pushed window.open(href, '_blank') } - }) + }); }); } diff --git a/content/snippets/filler-1.md b/content/snippets/filler-1.md index 6c44f7b..5f2e3e7 100644 --- a/content/snippets/filler-1.md +++ b/content/snippets/filler-1.md @@ -4,4 +4,4 @@ date: 2022-04-16T08:45:13Z draft: false --- -Filler 1 \ No newline at end of file +Filler 1 diff --git a/content/snippets/filler-2.md b/content/snippets/filler-2.md index b028eed..fdbcd52 100644 --- a/content/snippets/filler-2.md +++ b/content/snippets/filler-2.md @@ -4,4 +4,4 @@ date: 2022-04-17T08:45:13Z draft: false --- -Filler 2 \ No newline at end of file +Filler 2 diff --git a/content/snippets/filler-3.md b/content/snippets/filler-3.md index 3bb917e..d7aae5f 100644 --- a/content/snippets/filler-3.md +++ b/content/snippets/filler-3.md @@ -4,4 +4,4 @@ date: 2022-04-18T08:45:13Z draft: false --- -Filler 3 \ No newline at end of file +Filler 3 diff --git a/content/snippets/filler-4.md b/content/snippets/filler-4.md index bcc0936..5c4b8d6 100644 --- a/content/snippets/filler-4.md +++ b/content/snippets/filler-4.md @@ -4,4 +4,4 @@ date: 2022-04-19T08:45:13Z draft: false --- -Filler 4 \ No newline at end of file +Filler 4 diff --git a/content/snippets/seconds-since-last-pacman-sync.md b/content/snippets/seconds-since-last-pacman-sync.md index 4b9d7c3..78caf55 100644 --- a/content/snippets/seconds-since-last-pacman-sync.md +++ b/content/snippets/seconds-since-last-pacman-sync.md @@ -8,4 +8,4 @@ We can echo the result of the current timestamp subtracted from the last edit ti ``` echo $(expr $(date +%s) - $(grep -rn -A 1 %INSTALLDATE% /var/lib/pacman/local/*/desc | grep -oP '\d{10,}$' | sort | tail -1)) -``` \ No newline at end of file +```