Package Exports
- csstree-validator
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (csstree-validator) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
CSS Tree Validator
How to use:
> npm i -g csstree-validator
> csstree-validator /path/to/style.css> csstree-validator -h
Usage:
csstree-validate [fileOrDir] [options]
Options:
-h, --help Output usage information
-r, --reporter <name> Format of output: console (default), checkstyle, json
-v, --version Output versionAPI
var validate = require('csstree-validator').validateFile;
var reporter = require('csstree-validator').reporters.checkstyle;
console.log(reporter(validateFile('/path/to/style.css')));