Rule function-name-format will enforce a convention for function names.
allow-leading-underscore:true/false(defaults totrue)convention:'hyphenatedlowercase'(default),camelcase,snakecase, or a Regular Expression that the function name must match (e.g.^[_A-Z]+$)convention-explanation: Custom explanation to display to the user if a function doesn't adhere to the convention
Settings:
allow-leading-underscore: trueconvention: hyphenatedlowercase
When enabled, the following are allowed:
@function hyphenated-lowercase() {
@return "foo";
}
@function _leading-underscore($x) {
@return $x;
}
.foo {
content: hyphenated-lowercase("bar");
}When enabled, the following are disallowed:
@function HYPHENATED-UPPERCASE() {
@return "foo";
}
@function _camelCaseWithLeadingUnderscore($x) {
@return $x;
}
.foo {
content: snake_case();
}Settings:
allow-leading-underscore: falseconvention: camelcase
When enabled, the following are allowed:
@function camelCase() {
@return "foo";
}
.foo {
content: anotherCamelCase();
}When enabled, the following are disallowed:
@function HYPHENATED-UPPERCASE() {
@return "foo";
}
@function _camelCaseWithLeadingUnderscore() {
@return "foo";
}
.foo {
content: snake_case();
}Settings:
allow-leading-underscore: falseconvention: snakecase
When enabled, the following are allowed:
@function snake_case() {
@return "foo";
}
.foo {
content: another_snake_case();
}When enabled, the following are disallowed:
@function HYPHENATED-UPPERCASE() {
@return "foo";
}
@function _snake_case_with_leading_underscore() {
@return "foo";
}
.foo {
content: camelCase();
}Settings:
allow-leading-underscore: trueconvention: '^[_A-Z]+$'convention-explanation: 'Functions must contain only uppercase letters and underscores'
When enabled, the following are allowed:
@function SCREAMING_SNAKE_CASE() {
@return "foo";
}
.foo {
content: _LEADING_UNDERSCORE();
}When enabled, the following are disallowed:
(Each line with a function call/declaration will report Functions must contain only uppercase letters and underscores when linted.)
@function HYPHENATED-UPPERCASE() {
@return "foo";
}
@function _snake_case_with_leading_underscore() {
@return "foo";
}
.foo {
content: camelCase();
}