From 2c76182993e9bb930f8032436e5bc5b72f79d8f7 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Fri, 4 Oct 2024 21:12:05 +0800 Subject: [PATCH] Add Vale into the toolbelt --- .gitignore | 13 +++++++++++-- .vale.ini | 8 ++++++++ 2 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 .vale.ini diff --git a/.gitignore b/.gitignore index 36dfdc0..dde78e1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,9 @@ -### Hugo ### +### Project setup ### +# Vale styles +/styles/ -.direnv +# Custom cache folder. +.cache # The code workspace used for the dedicated branches for certain content. /code-workspace/ @@ -11,6 +14,9 @@ # Certain files just need to be ignored. /layouts/partials/openring.html /layouts/partials/planet.html +.direnv + +### Hugo ### # Generated files by hugo /public/ @@ -23,3 +29,6 @@ hugo.linux # Ignore all other envrc .envrc.* + +# Local Netlify folder +.netlify diff --git a/.vale.ini b/.vale.ini new file mode 100644 index 0000000..1eebcd6 --- /dev/null +++ b/.vale.ini @@ -0,0 +1,8 @@ +StylesPath = styles + +MinAlertLevel = suggestion + +Packages = RedHat, AsciiDoc, write-good, Hugo + +[*.adoc] +BasedOnStyles = Vale, AsciiDoc, RedHat, write-good