From f9e0b78513c323e94b7157883635bbfd2673a896 Mon Sep 17 00:00:00 2001 From: Mike Ralphson Date: Mon, 17 Feb 2020 14:45:06 +0000 Subject: [PATCH] docs: update README.md --- README.md | 2 +- extension.js | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6f0ac59..3668566 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ The validator enforces semantic restrictions which cannot be expressed by the JS The linter applies a lightly opinionated set of 'best practices' to your API document, making it complete and comprehensive, as opposed to merely minimally valid. -The best documentation currently for the linter rules is that of [Speccy](http://speccy.io/rules/1-rulesets), which shares code with this project. The linter [rules format](https://mermade.github.io/oas-kit/linter-rules.html) is also documented. +The default linter rules are documented [here](https://mermade.github.io/oas-kit/default-rules.html). The linter [DSL rules format](https://mermade.github.io/oas-kit/linter-rules.html) is also documented. ## Features diff --git a/extension.js b/extension.js index bdf6c1c..ff78ea5 100644 --- a/extension.js +++ b/extension.js @@ -268,6 +268,8 @@ function activate(context) { return optionallyValidateOnSave(document); })); console.log('openapi-lint: Installed save handler'); + // you can return an API from your extension for use by other extensions + // or tests etc } exports.activate = activate;