eslint-plugin-skip-adobe-directives
v1.0.2
Published
eslint plugin which skips linting of adobe directives like '#target illustrator'
Downloads
5
Maintainers
Readme
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"]
}