Skip to content
This repository has been archived by the owner on Jul 27, 2024. It is now read-only.

Releases: Shopify/theme-check

v1.9.2

13 Dec 20:15
ff5e43b
Compare
Choose a tag to compare
  • Improve HTML parsing error message (#592)

v1.9.1

10 Dec 13:50
e133e9a
Compare
Choose a tag to compare
  • Fixup img_url correction for string properties

v1.9.0

01 Dec 15:39
Compare
Choose a tag to compare

Features

  • 🔥 Add Corrections as Code Actions in Language Server (quickfix + source.fixAll) (#471)

    correct.mp4
  • 💅 Add SchemaJsonFormat check and correction for prettier JSON (#512)

    json.mp4
  • Add checkOn{Open,Change,Save} Language Server Configurations (#511)

    Adds support for a couple of Language Server configurations (commonly known as VS Code settings). Here's the default configuration:

     {
        "themeCheck.checkOnSave": true,
        "themeCheck.checkOnChange": true,
        "themeCheck.checkOnOpen": true
      }
  • Add support for new filters image_tag + image_url. (See shopify.dev changelog announcement)

    • Add support for new filters:

      • image_tag
      • image_url
    • Add depreciation for old filters:

      • img_tag
      • img_url
    • Add img_url correction to ease migration:

      img_url_correct.mp4

Fixes

  • Fix missing null check in ValidHTMLTranslation (#517)
  • Fix MatchingTranslations check + corrections (#515)
  • Fix RemoteAsset false positive from settings variables (#516)
  • Make SpaceInsideBraces work for missing cases (#509)
  • Fix Liquid in HTML parsing
  • Make TranslationKeyExists also check section translations

v1.8.0

09 Nov 18:21
e1a27f6
Compare
Choose a tag to compare

Features

New corrections for the following checks:

  • MissingRequiredTemplateFiles (#462)
  • RequiredLayoutThemeObject (#484)
  • UnusedAssign (#380)

Fixes

  • Add support for preload_tag filter
  • Minor Language Server improvements (close logs) (#472)