diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index aa78ce4e..967386b2 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -27,12 +27,12 @@ env: EMAIL: jack20220723@gmail.com jobs: - mk-yml-style-check: - uses: QubitPi/hashicorp-aws/.github/workflows/yml-and-md-style-checks.yml@master + yml-md-style-and-link-checks: + uses: QubitPi/hashicorp-aws/.github/workflows/yml-md-style-and-link-checks.yml@master tests: name: Unit & Integration Tests - needs: mk-yml-style-check + needs: yml-md-style-and-link-checks runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 diff --git a/.mdlrc b/.mdlrc deleted file mode 100644 index 778686d0..00000000 --- a/.mdlrc +++ /dev/null @@ -1,2 +0,0 @@ -rules "~MD002", "~MD005", "~MD007", "~MD013", "~MD041", "~MD029", "~MD033" -style "#{File.dirname(__FILE__)}/markdownlint.rb" diff --git a/.yamllint b/.yamllint deleted file mode 100644 index f99238f4..00000000 --- a/.yamllint +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright Jiaqi Liu -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. ---- -extends: default -rules: - line-length: - max: 256 - level: warning - document-start: disable - braces: - forbid: false - min-spaces-inside: 0 - max-spaces-inside: 1 - min-spaces-inside-empty: -1 - max-spaces-inside-empty: -1 diff --git a/docs/docs/elide/development.md b/docs/docs/elide/development.md index b457bbc1..75505ba3 100644 --- a/docs/docs/elide/development.md +++ b/docs/docs/elide/development.md @@ -30,8 +30,8 @@ Elide [bindings][what is binding]: 1. **[Elide][Elide instance class]** 2. **[ElideSettings][ElideSettings instance class]** with 2 extra sub-bindings: - - **EntityDictionary** - - **DataStore** + - **EntityDictionary** + - **DataStore** The binding is referencing [Elide Standalone] in the following way: diff --git a/docs/docs/elide/intro.mdx b/docs/docs/elide/intro.mdx index 704897e4..6870c94d 100644 --- a/docs/docs/elide/intro.mdx +++ b/docs/docs/elide/intro.mdx @@ -41,8 +41,8 @@ Please visit [JWT GitHub] and either 1. clone the repo with `git clone https://github.com/QubitPi/jersey-webservice-template.git`, or 2. make it a template instantiation with our own webservice name by doing the following: -![Error loading instantiation-1.png](./img/instantiation-1.png) -![Error loading instantiation-2.png](./img/instantiation-2.png) + ![Error loading instantiation-1.png](./img/instantiation-1.png) + ![Error loading instantiation-2.png](./img/instantiation-2.png) Creating Models --------------- diff --git a/markdownlint.rb b/markdownlint.rb deleted file mode 100644 index ad64e6b3..00000000 --- a/markdownlint.rb +++ /dev/null @@ -1,19 +0,0 @@ -# Copyright Jiaqi Liu -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -all -# https://github.com/markdownlint/markdownlint/blob/main/docs/RULES.md -rule 'MD003', style: :setext_with_atx -rule 'MD004', style: :sublist -rule 'MD013', line_length: 120