From 34b9b9b508623416e3d568a651a94d718c82bca6 Mon Sep 17 00:00:00 2001 From: Lea Anthony Date: Wed, 6 Sep 2023 20:59:45 +1000 Subject: [PATCH] Add status table to docs. --- mkdocs-website/overrides/home.html | 22 ++++++++++++++++++++++ qodana.yaml | 29 +++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 qodana.yaml diff --git a/mkdocs-website/overrides/home.html b/mkdocs-website/overrides/home.html index 836fe4b5..4f4ce0ac 100644 --- a/mkdocs-website/overrides/home.html +++ b/mkdocs-website/overrides/home.html @@ -75,6 +75,28 @@ v3 is a work in progress. Expect things to fail. Expect things to change. Expect the documentation to be wrong.

+
+ + + + + + + + + + + + + + + + + +
Operating SystemStatus
WindowsReady for alpha testing
MacReady for alpha testing
LinuxNot ready - still a work in progress
+

+ + Please feel free to raise PRs against this website. Every single PR helps us get closer to a release.

Thank you for sharing this journey with us.


diff --git a/qodana.yaml b/qodana.yaml new file mode 100644 index 00000000..215d8080 --- /dev/null +++ b/qodana.yaml @@ -0,0 +1,29 @@ +#-------------------------------------------------------------------------------# +# Qodana analysis is configured by qodana.yaml file # +# https://www.jetbrains.com/help/qodana/qodana-yaml.html # +#-------------------------------------------------------------------------------# +version: "1.0" + +#Specify inspection profile for code analysis +profile: + name: qodana.starter + +#Enable inspections +#include: +# - name: + +#Disable inspections +#exclude: +# - name: +# paths: +# - + +#Execute shell command before Qodana execution (Applied in CI/CD pipeline) +#bootstrap: sh ./prepare-qodana.sh + +#Install IDE plugins before Qodana execution (Applied in CI/CD pipeline) +#plugins: +# - id: #(plugin id can be found at https://plugins.jetbrains.com) + +#Specify Qodana linter for analysis (Applied in CI/CD pipeline) +linter: jetbrains/qodana-go:latest