Skip to content

Latest commit

 

History

History
47 lines (36 loc) · 859 Bytes

README.md

File metadata and controls

47 lines (36 loc) · 859 Bytes

broken

Checks if the images are broken.

Options

true

The following patterns are considered warnings:

.header {
  background-image: url('https://ramasilveyra.github.io/stylelint-images/media/doesn-exist.png');
}
.header {
  background: url('https://ramasilveyra.github.io/stylelint-images/media/doesn-exist.png');
}
.header {
  content: url('https://ramasilveyra.github.io/stylelint-images/media/doesn-exist.png');
}

The following patterns are not considered warnings:

.header {
  background-image: url('https://ramasilveyra.github.io/stylelint-images/media/image-1.png');
}
.header {
  background: url('https://ramasilveyra.github.io/stylelint-images/media/image-1.png');
}
.header {
  content: url('https://ramasilveyra.github.io/stylelint-images/media/image-1.png');
}