stylelint-function-url-local-root
1.0.0 • Public • Published tradingview/function-url-local-root
Allow or disallow URLs from local root.
Options:
"always"
, "never"
always
background: url(/foo/bar);
background-image: url('/foo/bar');
content: url("/foo/bar");
background: url(foo/bar);
background-image: url('foo/bar');
content: url("foo/bar");
never
background: url(foo/bar);
background-image: url('foo/bar');
content: url("foo/bar");
background: url(/foo/bar);
background-image: url('/foo/bar');
content: url("/foo/bar");
Readme
Keywords
nonePackage Sidebar
Install
npm i stylelint-function-url-local-root
Weekly Downloads