1.0.0 • Published 5 years ago

stylelint-function-url-local-root v1.0.0

Weekly downloads
162
License
WTFPL
Repository
github
Last release
5 years ago

tradingview/function-url-local-root

Allow or disallow URLs from local root.

Options:

"always", "never"

always

/* Okay: */
background: url(/foo/bar);
background-image: url('/foo/bar');
content: url("/foo/bar");

/* Error: */
background: url(foo/bar);
background-image: url('foo/bar');
content: url("foo/bar");

never

/* Okay: */
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");