forked from silverstripe/silverstripe-asset-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MNT Replace sass-lint with stylelint
- Loading branch information
Sabina Talipova
committed
Apr 19, 2024
1 parent
3fac9e5
commit f2f9b14
Showing
3 changed files
with
78 additions
and
181 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
defaultSeverity: warning | ||
extends: | ||
- stylelint-config-recommended-scss | ||
- stylelint-config-sass-guidelines | ||
- stylelint-config-standard | ||
plugins: | ||
- stylelint-scss | ||
ignoreFiles: | ||
- 'client/src/styles/legacy/*' | ||
- 'admin/client/src/styles/legacy/*' | ||
rules: | ||
# Line Spacing | ||
rule-empty-line-before: | ||
- always-multi-line | ||
- ignore: | ||
- after-comment | ||
- first-nested | ||
- inside-block | ||
# Selector rules | ||
selector-no-qualifying-type: | ||
- true | ||
- ignore: | ||
- attribute | ||
- class | ||
selector-max-id: 2 | ||
selector-max-compound-selectors: 5 | ||
selector-pseudo-element-colon-notation: | ||
- single | ||
no-descending-specificity: | ||
- true | ||
- ignore: | ||
- selectors-within-list | ||
max-nesting-depth: | ||
- 3 | ||
- ignore: | ||
- blockless-at-rules | ||
- pseudo-classes | ||
# Color rules | ||
color-function-notation: | ||
- legacy | ||
alpha-value-notation: | ||
- number | ||
number-max-precision: 5 | ||
color-named: | ||
- never | ||
- ignore: | ||
- inside-function | ||
# Common rules | ||
function-url-quotes: always | ||
import-notation: string | ||
annotation-no-unknown: | ||
- true | ||
- ignoreAnnotations: | ||
- 'default' | ||
comment-no-empty: | ||
- true | ||
declaration-block-no-duplicate-properties: | ||
- true | ||
no-irregular-whitespace: | ||
- true | ||
block-no-empty: | ||
- true | ||
- ignore: | ||
- comments | ||
font-family-name-quotes: | ||
- always-unless-keyword | ||
# Turn off rules | ||
selector-class-pattern: null | ||
function-no-unknown: null | ||
property-no-vendor-prefix: null | ||
value-no-vendor-prefix: null | ||
font-family-no-missing-generic-family-keyword: null | ||
scss/dollar-variable-colon-space-after: null | ||
scss/no-global-function-names: null | ||
value-keyword-case: null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters