1.0.2 • Published 5 years ago

eslint-plugin-skip-adobe-directives v1.0.2

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

eslint-plugin-skip-adobe-directives

This is a package to skip linting of adobe directives.

Why

Adobe directives start with # character.

#target illustrator
#targetEngine session

Eslint will put error on these syntax.

  1:1  error  Parsing error: Unexpected character '#'

This package helps to skip linting on these lines.

Install

npm install --save-dev eslint-plugin-skip-adobe-directives

Usage

Add this plugin on the eslint config file like ".eslintrc".

{
  "plugins": ["skip-adobe-directives"]
}