1.0.0 • Published 5 years ago

eslint-plugin-no-liquid-templates v1.0.0

Weekly downloads
1
License
ISC
Repository
-
Last release
5 years ago

eslint-plugin-no-liquid-templates

Handler for liquid templates

Installation

You'll first need to install ESLint:

$ npm i eslint --save-dev

Next, install eslint-plugin-no-liquid-templates:

$ npm install eslint-plugin-no-liquid-templates --save-dev

Note: If you installed ESLint globally (using the -g flag) then you must also install eslint-plugin-no-liquid-templates globally.

Usage

Add no-liquid-templates to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:

{
    "plugins": [
        "no-liquid-templates"
    ]
}