1.1.0 • Published 6 years ago

postcss-bialint v1.1.0

Weekly downloads
1
License
MIT
Repository
-
Last release
6 years ago

PostCSS Bia Build Status

PostCSS plugin for bia.

.foo {
  background-image: url(https://www.baidu.com/1.png);  /* that will be ok*/
}
.foo {
  background-image: url(http://www.baidu.com/1.png);  /* an error will be throw */
}
.foo {
  background-image: url(http://www.baidu.com/1.png) /* ignore-protocol */;  /* ignore check */
}

Usage

postcss([ require('postcss-bialint') ])

See PostCSS docs for examples for your environment.