linted 32.9.0 → 32.9.2-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/RELEASE.yml +38 -38
 - package/.markdownlint.jsonc +97 -97
 - package/.mocharc.yml +11 -11
 - package/LICENSE +20 -20
 - package/README.md +351 -351
 - package/dist/imports/index.d.ts.map +1 -1
 - package/dist/imports/plugins.d.ts.map +1 -1
 - package/eslint.config.js +3 -3
 - package/package.json +101 -100
 - package/src/imports/index.ts +7 -7
 - package/src/imports/parsers.ts +9 -9
 - package/src/imports/plugins.ts +23 -23
 - package/src/index.spec.ts +37 -37
 - package/src/index.ts +25 -25
 - package/src/scope/index.spec.ts +136 -136
 - package/src/scope/index.ts +14 -14
 - package/src/scope/tree.spec.ts +124 -124
 - package/src/scope/tree.ts +22 -22
 - package/src/settings/css.ts +8 -8
 - package/src/settings/html.ts +10 -10
 - package/src/settings/index.ts +15 -15
 - package/src/settings/json.ts +6 -6
 - package/src/settings/svelte.ts +10 -10
 - package/src/settings/ts.ts +31 -31
 - package/src/settings/yml.ts +6 -6
 - package/tsconfig.json +56 -56
 - package/typings/chai.d.ts +6 -6
 
| 
         @@ -1,38 +1,38 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            --- # RELEASE.yml
         
     | 
| 
       2 
     | 
    
         
            -
            name: NPM Publish
         
     | 
| 
       3 
     | 
    
         
            -
            on:
         
     | 
| 
       4 
     | 
    
         
            -
              push:
         
     | 
| 
       5 
     | 
    
         
            -
                tags:
         
     | 
| 
       6 
     | 
    
         
            -
                  - v[0-9]+.[0-9]+.[0-9]+
         
     | 
| 
       7 
     | 
    
         
            -
                  - v[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+
         
     | 
| 
       8 
     | 
    
         
            -
            jobs:
         
     | 
| 
       9 
     | 
    
         
            -
              publish-release:
         
     | 
| 
       10 
     | 
    
         
            -
                name: Build/Publish
         
     | 
| 
       11 
     | 
    
         
            -
                environment:
         
     | 
| 
       12 
     | 
    
         
            -
                  name: RELEASE
         
     | 
| 
       13 
     | 
    
         
            -
                  url: https://www.npmjs.com/package/linted?activeTab=versions
         
     | 
| 
       14 
     | 
    
         
            -
                permissions:
         
     | 
| 
       15 
     | 
    
         
            -
                  id-token: write
         
     | 
| 
       16 
     | 
    
         
            -
                  contents: read
         
     | 
| 
       17 
     | 
    
         
            -
                runs-on: ubuntu-latest
         
     | 
| 
       18 
     | 
    
         
            -
                steps:
         
     | 
| 
       19 
     | 
    
         
            -
                  - name: Checkout
         
     | 
| 
       20 
     | 
    
         
            -
                    id: checkout
         
     | 
| 
       21 
     | 
    
         
            -
                    uses: actions/checkout@v4
         
     | 
| 
       22 
     | 
    
         
            -
                  - name: Install Node
         
     | 
| 
       23 
     | 
    
         
            -
                    id: node
         
     | 
| 
       24 
     | 
    
         
            -
                    uses: actions/setup-node@v4
         
     | 
| 
       25 
     | 
    
         
            -
                    with:
         
     | 
| 
       26 
     | 
    
         
            -
                      node-version: 22
         
     | 
| 
       27 
     | 
    
         
            -
                      registry-url: https://registry.npmjs.org
         
     | 
| 
       28 
     | 
    
         
            -
                  - name: Install NPM
         
     | 
| 
       29 
     | 
    
         
            -
                    id: npm
         
     | 
| 
       30 
     | 
    
         
            -
                    run: npm install -g npm@latest
         
     | 
| 
       31 
     | 
    
         
            -
                  - name: Install Dependencies
         
     | 
| 
       32 
     | 
    
         
            -
                    id: ci
         
     | 
| 
       33 
     | 
    
         
            -
                    run: npm ci --loglevel=error --fund=false
         
     | 
| 
       34 
     | 
    
         
            -
                  - name: Publish to NPM
         
     | 
| 
       35 
     | 
    
         
            -
                    id: publish
         
     | 
| 
       36 
     | 
    
         
            -
                    run: npm publish
         
     | 
| 
       37 
     | 
    
         
            -
             
     | 
| 
       38 
     | 
    
         
            -
            ...
         
     | 
| 
      
 1 
     | 
    
         
            +
            --- # RELEASE.yml
         
     | 
| 
      
 2 
     | 
    
         
            +
            name: NPM Publish
         
     | 
| 
      
 3 
     | 
    
         
            +
            on:
         
     | 
| 
      
 4 
     | 
    
         
            +
              push:
         
     | 
| 
      
 5 
     | 
    
         
            +
                tags:
         
     | 
| 
      
 6 
     | 
    
         
            +
                  - v[0-9]+.[0-9]+.[0-9]+
         
     | 
| 
      
 7 
     | 
    
         
            +
                  - v[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+
         
     | 
| 
      
 8 
     | 
    
         
            +
            jobs:
         
     | 
| 
      
 9 
     | 
    
         
            +
              publish-release:
         
     | 
| 
      
 10 
     | 
    
         
            +
                name: Build/Publish
         
     | 
| 
      
 11 
     | 
    
         
            +
                environment:
         
     | 
| 
      
 12 
     | 
    
         
            +
                  name: RELEASE
         
     | 
| 
      
 13 
     | 
    
         
            +
                  url: https://www.npmjs.com/package/linted?activeTab=versions
         
     | 
| 
      
 14 
     | 
    
         
            +
                permissions:
         
     | 
| 
      
 15 
     | 
    
         
            +
                  id-token: write
         
     | 
| 
      
 16 
     | 
    
         
            +
                  contents: read
         
     | 
| 
      
 17 
     | 
    
         
            +
                runs-on: ubuntu-latest
         
     | 
| 
      
 18 
     | 
    
         
            +
                steps:
         
     | 
| 
      
 19 
     | 
    
         
            +
                  - name: Checkout
         
     | 
| 
      
 20 
     | 
    
         
            +
                    id: checkout
         
     | 
| 
      
 21 
     | 
    
         
            +
                    uses: actions/checkout@v4
         
     | 
| 
      
 22 
     | 
    
         
            +
                  - name: Install Node
         
     | 
| 
      
 23 
     | 
    
         
            +
                    id: node
         
     | 
| 
      
 24 
     | 
    
         
            +
                    uses: actions/setup-node@v4
         
     | 
| 
      
 25 
     | 
    
         
            +
                    with:
         
     | 
| 
      
 26 
     | 
    
         
            +
                      node-version: 22
         
     | 
| 
      
 27 
     | 
    
         
            +
                      registry-url: https://registry.npmjs.org
         
     | 
| 
      
 28 
     | 
    
         
            +
                  - name: Install NPM
         
     | 
| 
      
 29 
     | 
    
         
            +
                    id: npm
         
     | 
| 
      
 30 
     | 
    
         
            +
                    run: npm install -g npm@latest
         
     | 
| 
      
 31 
     | 
    
         
            +
                  - name: Install Dependencies
         
     | 
| 
      
 32 
     | 
    
         
            +
                    id: ci
         
     | 
| 
      
 33 
     | 
    
         
            +
                    run: npm ci --loglevel=error --fund=false
         
     | 
| 
      
 34 
     | 
    
         
            +
                  - name: Publish to NPM
         
     | 
| 
      
 35 
     | 
    
         
            +
                    id: publish
         
     | 
| 
      
 36 
     | 
    
         
            +
                    run: npm publish
         
     | 
| 
      
 37 
     | 
    
         
            +
             
     | 
| 
      
 38 
     | 
    
         
            +
            ...
         
     | 
    
        package/.markdownlint.jsonc
    CHANGED
    
    | 
         @@ -1,97 +1,97 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            {
         
     | 
| 
       2 
     | 
    
         
            -
              // #region v38.1.1
         
     | 
| 
       3 
     | 
    
         
            -
              "$schema": "https://gist.githubusercontent.com/jimmy-zhening-luo/e0d6b5715f0df18bc462f752520bd485/raw",
         
     | 
| 
       4 
     | 
    
         
            -
              "$help": {
         
     | 
| 
       5 
     | 
    
         
            -
                "link": "https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md",
         
     | 
| 
       6 
     | 
    
         
            -
              },
         
     | 
| 
       7 
     | 
    
         
            -
              // #endregion
         
     | 
| 
       8 
     | 
    
         
            -
              "heading-increment": true /* MD001 */,
         
     | 
| 
       9 
     | 
    
         
            -
              "heading-style": {
         
     | 
| 
       10 
     | 
    
         
            -
                "style": "atx",
         
     | 
| 
       11 
     | 
    
         
            -
              } /* MD003 */,
         
     | 
| 
       12 
     | 
    
         
            -
              "ul-style": false /* MD004 */,
         
     | 
| 
       13 
     | 
    
         
            -
              "list-indent": true /* MD005 */,
         
     | 
| 
       14 
     | 
    
         
            -
              "ul-indent": {
         
     | 
| 
       15 
     | 
    
         
            -
                "indent": 4,
         
     | 
| 
       16 
     | 
    
         
            -
              } /* MD007 */,
         
     | 
| 
       17 
     | 
    
         
            -
              "no-trailing-spaces": {
         
     | 
| 
       18 
     | 
    
         
            -
                "br_spaces": 0,
         
     | 
| 
       19 
     | 
    
         
            -
                "strict": true,
         
     | 
| 
       20 
     | 
    
         
            -
              } /* MD009 */,
         
     | 
| 
       21 
     | 
    
         
            -
              "no-hard-tabs": {
         
     | 
| 
       22 
     | 
    
         
            -
                "spaces_per_tab": 4,
         
     | 
| 
       23 
     | 
    
         
            -
                "ignore_code_languages": [],
         
     | 
| 
       24 
     | 
    
         
            -
              } /* MD010 */,
         
     | 
| 
       25 
     | 
    
         
            -
              "no-reversed-links": true /* MD011 */,
         
     | 
| 
       26 
     | 
    
         
            -
              "no-multiple-blanks": true /* MD012 */,
         
     | 
| 
       27 
     | 
    
         
            -
              "line-length": false /* MD013 */,
         
     | 
| 
       28 
     | 
    
         
            -
              "commands-show-output": true /* MD014 */,
         
     | 
| 
       29 
     | 
    
         
            -
              "no-missing-space-atx": true /* MD018 */,
         
     | 
| 
       30 
     | 
    
         
            -
              "no-multiple-space-atx": true /* MD019 */,
         
     | 
| 
       31 
     | 
    
         
            -
              "no-missing-space-closed-atx": true /* MD020 */,
         
     | 
| 
       32 
     | 
    
         
            -
              "no-multiple-space-closed-atx": true /* MD021 */,
         
     | 
| 
       33 
     | 
    
         
            -
              "blanks-around-headings": {
         
     | 
| 
       34 
     | 
    
         
            -
                "lines_below": 0,
         
     | 
| 
       35 
     | 
    
         
            -
              } /* MD022 */,
         
     | 
| 
       36 
     | 
    
         
            -
              "heading-start-left": true /* MD023 */,
         
     | 
| 
       37 
     | 
    
         
            -
              "no-duplicate-heading": {
         
     | 
| 
       38 
     | 
    
         
            -
                "siblings_only": true,
         
     | 
| 
       39 
     | 
    
         
            -
              } /* MD024 */,
         
     | 
| 
       40 
     | 
    
         
            -
              "single-title": false /* MD025, single-h1 */,
         
     | 
| 
       41 
     | 
    
         
            -
              "no-trailing-punctuation": false /* MD026 */,
         
     | 
| 
       42 
     | 
    
         
            -
              "no-multiple-space-blockquote": true /* MD027 */,
         
     | 
| 
       43 
     | 
    
         
            -
              "no-blanks-blockquote": true /* MD028 */,
         
     | 
| 
       44 
     | 
    
         
            -
              "ol-prefix": {
         
     | 
| 
       45 
     | 
    
         
            -
                "style": "one_or_ordered",
         
     | 
| 
       46 
     | 
    
         
            -
              } /* MD029 */,
         
     | 
| 
       47 
     | 
    
         
            -
              "list-marker-space": true /* MD030 */,
         
     | 
| 
       48 
     | 
    
         
            -
              "blanks-around-fences": {
         
     | 
| 
       49 
     | 
    
         
            -
                "list_items": false,
         
     | 
| 
       50 
     | 
    
         
            -
              } /* MD031 */,
         
     | 
| 
       51 
     | 
    
         
            -
              "blanks-around-lists": true /* MD032 */,
         
     | 
| 
       52 
     | 
    
         
            -
              "no-inline-html": {
         
     | 
| 
       53 
     | 
    
         
            -
                "allowed_elements": [
         
     | 
| 
       54 
     | 
    
         
            -
                  "br",
         
     | 
| 
       55 
     | 
    
         
            -
                  "details",
         
     | 
| 
       56 
     | 
    
         
            -
                  "img",
         
     | 
| 
       57 
     | 
    
         
            -
                  "summary",
         
     | 
| 
       58 
     | 
    
         
            -
                ],
         
     | 
| 
       59 
     | 
    
         
            -
              } /* MD033 */,
         
     | 
| 
       60 
     | 
    
         
            -
              "no-bare-urls": false /* MD034 */,
         
     | 
| 
       61 
     | 
    
         
            -
              "hr-style": {
         
     | 
| 
       62 
     | 
    
         
            -
                "style": "---",
         
     | 
| 
       63 
     | 
    
         
            -
              } /* MD035 */,
         
     | 
| 
       64 
     | 
    
         
            -
              "no-emphasis-as-heading": false /* MD036 */,
         
     | 
| 
       65 
     | 
    
         
            -
              "no-space-in-emphasis": true /* MD037 */,
         
     | 
| 
       66 
     | 
    
         
            -
              "no-space-in-code": false /* MD038 */,
         
     | 
| 
       67 
     | 
    
         
            -
              "no-space-in-links": true /* MD039 */,
         
     | 
| 
       68 
     | 
    
         
            -
              "fenced-code-language": false /* MD040 */,
         
     | 
| 
       69 
     | 
    
         
            -
              "first-line-heading": false /* MD041, first-line-h1 */,
         
     | 
| 
       70 
     | 
    
         
            -
              "no-empty-links": true /* MD042 */,
         
     | 
| 
       71 
     | 
    
         
            -
              "required-headings": false /* MD043 */,
         
     | 
| 
       72 
     | 
    
         
            -
              "proper-names": false /* MD044 */,
         
     | 
| 
       73 
     | 
    
         
            -
              "no-alt-text": true /* MD045 */,
         
     | 
| 
       74 
     | 
    
         
            -
              "code-block-style": {
         
     | 
| 
       75 
     | 
    
         
            -
                "style": "fenced",
         
     | 
| 
       76 
     | 
    
         
            -
              } /* MD046 */,
         
     | 
| 
       77 
     | 
    
         
            -
              "single-trailing-newline": true /* MD047 */,
         
     | 
| 
       78 
     | 
    
         
            -
              "code-fence-style": {
         
     | 
| 
       79 
     | 
    
         
            -
                "style": "backtick",
         
     | 
| 
       80 
     | 
    
         
            -
              } /* MD048 */,
         
     | 
| 
       81 
     | 
    
         
            -
              "emphasis-style": {
         
     | 
| 
       82 
     | 
    
         
            -
                "style": "underscore",
         
     | 
| 
       83 
     | 
    
         
            -
              } /* MD049 */,
         
     | 
| 
       84 
     | 
    
         
            -
              "strong-style": {
         
     | 
| 
       85 
     | 
    
         
            -
                "style": "underscore",
         
     | 
| 
       86 
     | 
    
         
            -
              } /* MD050 */,
         
     | 
| 
       87 
     | 
    
         
            -
              "link-fragments": true /* MD051 */,
         
     | 
| 
       88 
     | 
    
         
            -
              "reference-links-images": true /* MD052 */,
         
     | 
| 
       89 
     | 
    
         
            -
              "link-image-reference-definitions": true /* MD053 */,
         
     | 
| 
       90 
     | 
    
         
            -
              "link-image-style": true /* MD054 */,
         
     | 
| 
       91 
     | 
    
         
            -
              "table-pipe-style": {
         
     | 
| 
       92 
     | 
    
         
            -
                "style": "leading_and_trailing",
         
     | 
| 
       93 
     | 
    
         
            -
              } /* MD055 */,
         
     | 
| 
       94 
     | 
    
         
            -
              "table-column-count": true /* MD056 */,
         
     | 
| 
       95 
     | 
    
         
            -
              "blanks-around-tables": true /* MD058 */,
         
     | 
| 
       96 
     | 
    
         
            -
              "descriptive-link-text": false /* MD059 */,
         
     | 
| 
       97 
     | 
    
         
            -
            }
         
     | 
| 
      
 1 
     | 
    
         
            +
            {
         
     | 
| 
      
 2 
     | 
    
         
            +
              // #region v38.1.1
         
     | 
| 
      
 3 
     | 
    
         
            +
              "$schema": "https://gist.githubusercontent.com/jimmy-zhening-luo/e0d6b5715f0df18bc462f752520bd485/raw",
         
     | 
| 
      
 4 
     | 
    
         
            +
              "$help": {
         
     | 
| 
      
 5 
     | 
    
         
            +
                "link": "https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md",
         
     | 
| 
      
 6 
     | 
    
         
            +
              },
         
     | 
| 
      
 7 
     | 
    
         
            +
              // #endregion
         
     | 
| 
      
 8 
     | 
    
         
            +
              "heading-increment": true /* MD001 */,
         
     | 
| 
      
 9 
     | 
    
         
            +
              "heading-style": {
         
     | 
| 
      
 10 
     | 
    
         
            +
                "style": "atx",
         
     | 
| 
      
 11 
     | 
    
         
            +
              } /* MD003 */,
         
     | 
| 
      
 12 
     | 
    
         
            +
              "ul-style": false /* MD004 */,
         
     | 
| 
      
 13 
     | 
    
         
            +
              "list-indent": true /* MD005 */,
         
     | 
| 
      
 14 
     | 
    
         
            +
              "ul-indent": {
         
     | 
| 
      
 15 
     | 
    
         
            +
                "indent": 4,
         
     | 
| 
      
 16 
     | 
    
         
            +
              } /* MD007 */,
         
     | 
| 
      
 17 
     | 
    
         
            +
              "no-trailing-spaces": {
         
     | 
| 
      
 18 
     | 
    
         
            +
                "br_spaces": 0,
         
     | 
| 
      
 19 
     | 
    
         
            +
                "strict": true,
         
     | 
| 
      
 20 
     | 
    
         
            +
              } /* MD009 */,
         
     | 
| 
      
 21 
     | 
    
         
            +
              "no-hard-tabs": {
         
     | 
| 
      
 22 
     | 
    
         
            +
                "spaces_per_tab": 4,
         
     | 
| 
      
 23 
     | 
    
         
            +
                "ignore_code_languages": [],
         
     | 
| 
      
 24 
     | 
    
         
            +
              } /* MD010 */,
         
     | 
| 
      
 25 
     | 
    
         
            +
              "no-reversed-links": true /* MD011 */,
         
     | 
| 
      
 26 
     | 
    
         
            +
              "no-multiple-blanks": true /* MD012 */,
         
     | 
| 
      
 27 
     | 
    
         
            +
              "line-length": false /* MD013 */,
         
     | 
| 
      
 28 
     | 
    
         
            +
              "commands-show-output": true /* MD014 */,
         
     | 
| 
      
 29 
     | 
    
         
            +
              "no-missing-space-atx": true /* MD018 */,
         
     | 
| 
      
 30 
     | 
    
         
            +
              "no-multiple-space-atx": true /* MD019 */,
         
     | 
| 
      
 31 
     | 
    
         
            +
              "no-missing-space-closed-atx": true /* MD020 */,
         
     | 
| 
      
 32 
     | 
    
         
            +
              "no-multiple-space-closed-atx": true /* MD021 */,
         
     | 
| 
      
 33 
     | 
    
         
            +
              "blanks-around-headings": {
         
     | 
| 
      
 34 
     | 
    
         
            +
                "lines_below": 0,
         
     | 
| 
      
 35 
     | 
    
         
            +
              } /* MD022 */,
         
     | 
| 
      
 36 
     | 
    
         
            +
              "heading-start-left": true /* MD023 */,
         
     | 
| 
      
 37 
     | 
    
         
            +
              "no-duplicate-heading": {
         
     | 
| 
      
 38 
     | 
    
         
            +
                "siblings_only": true,
         
     | 
| 
      
 39 
     | 
    
         
            +
              } /* MD024 */,
         
     | 
| 
      
 40 
     | 
    
         
            +
              "single-title": false /* MD025, single-h1 */,
         
     | 
| 
      
 41 
     | 
    
         
            +
              "no-trailing-punctuation": false /* MD026 */,
         
     | 
| 
      
 42 
     | 
    
         
            +
              "no-multiple-space-blockquote": true /* MD027 */,
         
     | 
| 
      
 43 
     | 
    
         
            +
              "no-blanks-blockquote": true /* MD028 */,
         
     | 
| 
      
 44 
     | 
    
         
            +
              "ol-prefix": {
         
     | 
| 
      
 45 
     | 
    
         
            +
                "style": "one_or_ordered",
         
     | 
| 
      
 46 
     | 
    
         
            +
              } /* MD029 */,
         
     | 
| 
      
 47 
     | 
    
         
            +
              "list-marker-space": true /* MD030 */,
         
     | 
| 
      
 48 
     | 
    
         
            +
              "blanks-around-fences": {
         
     | 
| 
      
 49 
     | 
    
         
            +
                "list_items": false,
         
     | 
| 
      
 50 
     | 
    
         
            +
              } /* MD031 */,
         
     | 
| 
      
 51 
     | 
    
         
            +
              "blanks-around-lists": true /* MD032 */,
         
     | 
| 
      
 52 
     | 
    
         
            +
              "no-inline-html": {
         
     | 
| 
      
 53 
     | 
    
         
            +
                "allowed_elements": [
         
     | 
| 
      
 54 
     | 
    
         
            +
                  "br",
         
     | 
| 
      
 55 
     | 
    
         
            +
                  "details",
         
     | 
| 
      
 56 
     | 
    
         
            +
                  "img",
         
     | 
| 
      
 57 
     | 
    
         
            +
                  "summary",
         
     | 
| 
      
 58 
     | 
    
         
            +
                ],
         
     | 
| 
      
 59 
     | 
    
         
            +
              } /* MD033 */,
         
     | 
| 
      
 60 
     | 
    
         
            +
              "no-bare-urls": false /* MD034 */,
         
     | 
| 
      
 61 
     | 
    
         
            +
              "hr-style": {
         
     | 
| 
      
 62 
     | 
    
         
            +
                "style": "---",
         
     | 
| 
      
 63 
     | 
    
         
            +
              } /* MD035 */,
         
     | 
| 
      
 64 
     | 
    
         
            +
              "no-emphasis-as-heading": false /* MD036 */,
         
     | 
| 
      
 65 
     | 
    
         
            +
              "no-space-in-emphasis": true /* MD037 */,
         
     | 
| 
      
 66 
     | 
    
         
            +
              "no-space-in-code": false /* MD038 */,
         
     | 
| 
      
 67 
     | 
    
         
            +
              "no-space-in-links": true /* MD039 */,
         
     | 
| 
      
 68 
     | 
    
         
            +
              "fenced-code-language": false /* MD040 */,
         
     | 
| 
      
 69 
     | 
    
         
            +
              "first-line-heading": false /* MD041, first-line-h1 */,
         
     | 
| 
      
 70 
     | 
    
         
            +
              "no-empty-links": true /* MD042 */,
         
     | 
| 
      
 71 
     | 
    
         
            +
              "required-headings": false /* MD043 */,
         
     | 
| 
      
 72 
     | 
    
         
            +
              "proper-names": false /* MD044 */,
         
     | 
| 
      
 73 
     | 
    
         
            +
              "no-alt-text": true /* MD045 */,
         
     | 
| 
      
 74 
     | 
    
         
            +
              "code-block-style": {
         
     | 
| 
      
 75 
     | 
    
         
            +
                "style": "fenced",
         
     | 
| 
      
 76 
     | 
    
         
            +
              } /* MD046 */,
         
     | 
| 
      
 77 
     | 
    
         
            +
              "single-trailing-newline": true /* MD047 */,
         
     | 
| 
      
 78 
     | 
    
         
            +
              "code-fence-style": {
         
     | 
| 
      
 79 
     | 
    
         
            +
                "style": "backtick",
         
     | 
| 
      
 80 
     | 
    
         
            +
              } /* MD048 */,
         
     | 
| 
      
 81 
     | 
    
         
            +
              "emphasis-style": {
         
     | 
| 
      
 82 
     | 
    
         
            +
                "style": "underscore",
         
     | 
| 
      
 83 
     | 
    
         
            +
              } /* MD049 */,
         
     | 
| 
      
 84 
     | 
    
         
            +
              "strong-style": {
         
     | 
| 
      
 85 
     | 
    
         
            +
                "style": "underscore",
         
     | 
| 
      
 86 
     | 
    
         
            +
              } /* MD050 */,
         
     | 
| 
      
 87 
     | 
    
         
            +
              "link-fragments": true /* MD051 */,
         
     | 
| 
      
 88 
     | 
    
         
            +
              "reference-links-images": true /* MD052 */,
         
     | 
| 
      
 89 
     | 
    
         
            +
              "link-image-reference-definitions": true /* MD053 */,
         
     | 
| 
      
 90 
     | 
    
         
            +
              "link-image-style": true /* MD054 */,
         
     | 
| 
      
 91 
     | 
    
         
            +
              "table-pipe-style": {
         
     | 
| 
      
 92 
     | 
    
         
            +
                "style": "leading_and_trailing",
         
     | 
| 
      
 93 
     | 
    
         
            +
              } /* MD055 */,
         
     | 
| 
      
 94 
     | 
    
         
            +
              "table-column-count": true /* MD056 */,
         
     | 
| 
      
 95 
     | 
    
         
            +
              "blanks-around-tables": true /* MD058 */,
         
     | 
| 
      
 96 
     | 
    
         
            +
              "descriptive-link-text": false /* MD059 */,
         
     | 
| 
      
 97 
     | 
    
         
            +
            }
         
     | 
    
        package/.mocharc.yml
    CHANGED
    
    | 
         @@ -1,11 +1,11 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            ####################
         
     | 
| 
       2 
     | 
    
         
            -
            ###   .mocharc   ###
         
     | 
| 
       3 
     | 
    
         
            -
            ###   1107.0.0   ###
         
     | 
| 
       4 
     | 
    
         
            -
            ####################
         
     | 
| 
       5 
     | 
    
         
            -
             
     | 
| 
       6 
     | 
    
         
            -
            # https://mochajs.org/#configuration-format
         
     | 
| 
       7 
     | 
    
         
            -
            # https://mochajs.org/#command-line-usage
         
     | 
| 
       8 
     | 
    
         
            -
             
     | 
| 
       9 
     | 
    
         
            -
            spec: [dist/**/*.spec.js]
         
     | 
| 
       10 
     | 
    
         
            -
            extension: [js]
         
     | 
| 
       11 
     | 
    
         
            -
            # require: dist/_test/hooks.js
         
     | 
| 
      
 1 
     | 
    
         
            +
            ####################
         
     | 
| 
      
 2 
     | 
    
         
            +
            ###   .mocharc   ###
         
     | 
| 
      
 3 
     | 
    
         
            +
            ###   1107.0.0   ###
         
     | 
| 
      
 4 
     | 
    
         
            +
            ####################
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            # https://mochajs.org/#configuration-format
         
     | 
| 
      
 7 
     | 
    
         
            +
            # https://mochajs.org/#command-line-usage
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            spec: [dist/**/*.spec.js]
         
     | 
| 
      
 10 
     | 
    
         
            +
            extension: [js]
         
     | 
| 
      
 11 
     | 
    
         
            +
            # require: dist/_test/hooks.js
         
     | 
    
        package/LICENSE
    CHANGED
    
    | 
         @@ -1,20 +1,20 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            # MIT License
         
     | 
| 
       2 
     | 
    
         
            -
            Copyright (c) 2024 Jimmy Zhening Luo
         
     | 
| 
       3 
     | 
    
         
            -
             
     | 
| 
       4 
     | 
    
         
            -
            Permission is hereby granted, free of charge, to any person obtaining a copy
         
     | 
| 
       5 
     | 
    
         
            -
            of this software and associated documentation files (the "Software"), to deal
         
     | 
| 
       6 
     | 
    
         
            -
            in the Software without restriction, including without limitation the rights
         
     | 
| 
       7 
     | 
    
         
            -
            to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
         
     | 
| 
       8 
     | 
    
         
            -
            copies of the Software, and to permit persons to whom the Software is
         
     | 
| 
       9 
     | 
    
         
            -
            furnished to do so, subject to the following conditions:
         
     | 
| 
       10 
     | 
    
         
            -
             
     | 
| 
       11 
     | 
    
         
            -
            The above copyright notice and this permission notice shall be included in all
         
     | 
| 
       12 
     | 
    
         
            -
            copies or substantial portions of the Software.
         
     | 
| 
       13 
     | 
    
         
            -
             
     | 
| 
       14 
     | 
    
         
            -
            THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         
     | 
| 
       15 
     | 
    
         
            -
            IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
         
     | 
| 
       16 
     | 
    
         
            -
            FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
         
     | 
| 
       17 
     | 
    
         
            -
            AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
         
     | 
| 
       18 
     | 
    
         
            -
            LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
         
     | 
| 
       19 
     | 
    
         
            -
            OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
         
     | 
| 
       20 
     | 
    
         
            -
            SOFTWARE.
         
     | 
| 
      
 1 
     | 
    
         
            +
            # MIT License
         
     | 
| 
      
 2 
     | 
    
         
            +
            Copyright (c) 2024 Jimmy Zhening Luo
         
     | 
| 
      
 3 
     | 
    
         
            +
             
     | 
| 
      
 4 
     | 
    
         
            +
            Permission is hereby granted, free of charge, to any person obtaining a copy
         
     | 
| 
      
 5 
     | 
    
         
            +
            of this software and associated documentation files (the "Software"), to deal
         
     | 
| 
      
 6 
     | 
    
         
            +
            in the Software without restriction, including without limitation the rights
         
     | 
| 
      
 7 
     | 
    
         
            +
            to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
         
     | 
| 
      
 8 
     | 
    
         
            +
            copies of the Software, and to permit persons to whom the Software is
         
     | 
| 
      
 9 
     | 
    
         
            +
            furnished to do so, subject to the following conditions:
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
            The above copyright notice and this permission notice shall be included in all
         
     | 
| 
      
 12 
     | 
    
         
            +
            copies or substantial portions of the Software.
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
            THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         
     | 
| 
      
 15 
     | 
    
         
            +
            IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
         
     | 
| 
      
 16 
     | 
    
         
            +
            FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
         
     | 
| 
      
 17 
     | 
    
         
            +
            AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
         
     | 
| 
      
 18 
     | 
    
         
            +
            LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
         
     | 
| 
      
 19 
     | 
    
         
            +
            OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
         
     | 
| 
      
 20 
     | 
    
         
            +
            SOFTWARE.
         
     |