UNPKG

stylelint-sassdoc

Version:

stylelint plugin to check scss files for a valid sassdoc documentation Credits to https://github.com/anneangersbach

17 lines (13 loc) 308 B
# mixin-is-documented Checks if @mixin is preceeded by at least one SassDoc Comment. > ** Ignores private and nested mixins. ** ## Example of usage ```scss /// Resets the floats of the grid on an element /// @name grid.reset @mixin reset() { clear: both; display: block; float: initial; } ```