Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add dashed-ident-no-missing-reference-function #5044

Closed
wants to merge 21 commits into from
Closed

Commits on May 14, 2021

  1. Configuration menu
    Copy the full SHA
    8c48068 View commit details
    Browse the repository at this point in the history
  2. Update CHANGELOG.md

    jeddy3 committed May 14, 2021
    Configuration menu
    Copy the full SHA
    2f01778 View commit details
    Browse the repository at this point in the history
  3. Remove function-calc-no-invalid (#5296)

    * Remove function-calc-no-invalid
    
    * Remove calc parser
    
    * Remove ignoring of calc parser
    jeddy3 committed May 14, 2021
    Configuration menu
    Copy the full SHA
    4b82c24 View commit details
    Browse the repository at this point in the history
  4. Update CHANGELOG.md

    jeddy3 committed May 14, 2021
    Configuration menu
    Copy the full SHA
    0b3fa84 View commit details
    Browse the repository at this point in the history
  5. Drop Node 10 support for ESM (#5303)

    This change is a part of the next major version (v14).
    
    - Remove Node 10 from CI
    - Update `engines.node`
    
    In addition, this removes needless `CI: true` (just a refactoring).
    See <https://github.blog/changelog/2020-04-15-github-actions-sets-the-ci-environment-variable-to-true/>
    ybiquitous committed May 14, 2021
    Configuration menu
    Copy the full SHA
    37e1190 View commit details
    Browse the repository at this point in the history
  6. Update CHANGELOG.md

    ybiquitous committed May 14, 2021
    Configuration menu
    Copy the full SHA
    90a174d View commit details
    Browse the repository at this point in the history
  7. Refactor to remove Number.isInteger polyfill (#5302)

    We will no longer need the polyfill on the next major release (v14).
    ybiquitous committed May 14, 2021
    Configuration menu
    Copy the full SHA
    e4b6141 View commit details
    Browse the repository at this point in the history
  8. Add lang to code blocks in Markdown (#5299)

    * Add lang to code blocks in Markdown
    
    This change aims to make documents more readable and avoid syntax errors
    by adding a language specifier to code blocks in Markdown.
    
    To perform this task efficiently, I use two remark plugins:
    - [remark-lint-code-block-syntax](https://github.com/ybiquitous/remark-lint-code-block-syntax)
    - [remark-lint-fenced-code-flag](https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-fenced-code-flag)
    
    ```diff
    --- a/package.json
    +++ b/package.json
    @@ -66,7 +66,9 @@
       },
       "remarkConfig": {
         "plugins": [
    -      "@stylelint/remark-preset"
    +      "@stylelint/remark-preset",
    +      "remark-lint-code-block-syntax",
    +      "remark-lint-fenced-code-flag"
         ]
       },
       "jest": {
    @@ -189,6 +191,8 @@
         "postcss-import": "^12.0.1",
         "prettier": "^2.2.1",
         "remark-cli": "^9.0.0",
    +    "remark-lint-code-block-syntax": "^0.2.1",
    +    "remark-lint-fenced-code-flag": "^2.0.1",
         "typescript": "^4.2.4"
       },
       "engines": {
    ```
    
    Note: I do not recommend the addition of the plugins because they produce false positives.
    
    * Remove deprecated files
    
    * Remove deprecated files again
    ybiquitous committed May 14, 2021
    Configuration menu
    Copy the full SHA
    887f03e View commit details
    Browse the repository at this point in the history

Commits on May 15, 2021

  1. Remove syntax option (#5297)

    jeddy3 committed May 15, 2021
    Configuration menu
    Copy the full SHA
    52f99c6 View commit details
    Browse the repository at this point in the history
  2. Update CHANGELOG.md

    jeddy3 committed May 15, 2021
    Configuration menu
    Copy the full SHA
    1e4ca41 View commit details
    Browse the repository at this point in the history

Commits on May 16, 2021

  1. Configuration menu
    Copy the full SHA
    e0004aa View commit details
    Browse the repository at this point in the history

Commits on May 17, 2021

  1. Refactor lib/__tests__/standalone-cache.test.js (#5311)

    * Refactor `lib/__tests__/standalone-cache.test.js`
    
    - Reduce redundant callbacks via `async/await` syntax. (#4881)
    - Use `fs.existsSync()` instead of `fs.access()`.
      See <https://nodejs.org/api/fs.html#fs_fs_existssync_path>
    - Fix the disabled test. (#5309)
    - Inline redundant local variables.
    - Make expectations using `typeof` more accurate.
    
    * Reduce local variables by improving `getConfig()`
    ybiquitous committed May 17, 2021
    Configuration menu
    Copy the full SHA
    2345a21 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3d5725e View commit details
    Browse the repository at this point in the history
  3. Update CHANGELOG.md

    jeddy3 committed May 17, 2021
    Configuration menu
    Copy the full SHA
    a3460ef View commit details
    Browse the repository at this point in the history

Commits on May 19, 2021

  1. Configuration menu
    Copy the full SHA
    52a67ab View commit details
    Browse the repository at this point in the history
  2. Update CHANGELOG.md

    jeddy3 committed May 19, 2021
    Configuration menu
    Copy the full SHA
    9152ab4 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    492ae33 View commit details
    Browse the repository at this point in the history
  4. Update CHANGELOG.md

    jeddy3 committed May 19, 2021
    Configuration menu
    Copy the full SHA
    697fc15 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    d540d78 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    6086255 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    6143ec2 View commit details
    Browse the repository at this point in the history