Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.scss-lint.yml - gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 899eb1f6a8362f466469170b7e356cddafd1e359 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
scss_files: "./content/assets/stylesheets/**"

exclude:
  - "./content/assets/stylesheets/highlight.scss"
  - "./content/assets/stylesheets/font-awesome.min.css"

# Remove the first three lines so the frontmatter doesn't
# cause SCSS Lint to throw errors. Also remove ERB code.
preprocess_command: "sed -E '1,3d;s/<%= .* %>//g'"

linters:
  BorderZero:
    severity: error
  ColorKeyword:
    severity: error
  DuplicateProperty:
    severity: error
  EmptyLineBetweenBlocks:
    enabled: false
  EmptyRule:
    severity: error
  Indentation:
    severity: error
  ImportantRule:
    severity: error
  MergeableSelector:
    severity: error
  NestingDepth:
    max_depth: 5
  PropertySortOrder:
    enabled: false
  SingleLinePerSelector:
    enabled: false
  SelectorDepth:
    max_depth: 4
  StringQuotes:
    style: double_quotes
  TrailingSemicolon:
    severity: error
  TrailingWhitespace:
    enabled: false
  UrlFormat:
    enabled: false
  QualifyingElement:
    severity: error