Skip to content
Snippets Groups Projects
Select Git revision
  • 989f67c52b8b26802aecf269a5b99705acb37b4b
  • rebase/glitch-soc default protected
  • features/local_only
  • pleroma
  • master
  • features/attachments-enhance
  • glitch-soc/fixes/scrolling
  • rebase/tootsuite-2.5.0 protected
  • rebase/tootsuite-2.4.3 protected
  • rebase/tootsuite-2.4.2 protected
  • pleroma-old protected
  • unread
  • authors
  • procfix
  • fix-privacy-policy
  • feature-bio-fields
  • button
  • feature-paranoia
  • bundle-2020-05-14 protected
  • bundle-2020-02-27 protected
  • bundle-2020-05-20 protected
  • bundle-2020-01-22 protected
  • bundle-2020-01-20 protected
  • bundle-2019-06-26 protected
  • bundle-2019-04-11 protected
  • bundle-2019-03-07 protected
  • bundle-2019-02-10 protected
  • bundle-2019-10-01 protected
  • v2.6.0 protected
  • v2.6.0rc4 protected
  • v2.6.0rc3 protected
  • v2.6.0rc2 protected
  • v2.6.0rc1 protected
  • v2.5.2 protected
  • v2.5.1 protected
  • v2.5.0 protected
  • v2.5.0rc2 protected
  • v2.5.0rc1 protected
38 results

.editorconfig

Blame
  • .scss-lint.yml 7.23 KiB
    # Linter Documentation:
    # https://github.com/brigade/scss-lint/blob/v0.42.2/lib/scss_lint/linter/README.md
    
    scss_files: 'app/javascript/styles/**/*.scss'
    
    exclude:
      - app/javascript/styles/reset.scss
    
    linters:
      # Reports when you use improper spacing around ! (the "bang") in !default,
      # !global, !important, and !optional flags.
      BangFormat:
        enabled: false
    
      # Whether or not to prefer `border: 0` over `border: none`.
      BorderZero:
        enabled: false
    
      # Reports when you define a rule set using a selector with chained classes
      # (a.k.a. adjoining classes).
      ChainedClasses:
        enabled: false
    
      # Prefer hexadecimal color codes over color keywords.
      # (e.g. `color: green` is a color keyword)
      ColorKeyword:
        enabled: false
    
      # Prefer color literals (keywords or hexadecimal codes) to be used only in
      # variable declarations. They should be referred to via variables everywhere
      # else.
      ColorVariable:
        enabled: true
    
      # Which form of comments to prefer in CSS.
      Comment:
        enabled: false
    
      # Reports @debug statements (which you probably left behind accidentally).
      DebugStatement:
        enabled: false
    
      # Rule sets should be ordered as follows:
      # - @extend declarations
      # - @include declarations without inner @content
      # - properties, @include declarations with inner @content
      # - nested rule sets.
      DeclarationOrder:
        enabled: false
    
      # `scss-lint:disable` control comments should be preceded by a comment
      # explaining why these linters are being disabled for this file.
      # See https://github.com/brigade/scss-lint#disabling-linters-via-source for
      # more information.
      DisableLinterReason:
        enabled: true
    
      # Reports when you define the same property twice in a single rule set.
      DuplicateProperty:
        enabled: false
    
      # Separate rule, function, and mixin declarations with empty lines.
      EmptyLineBetweenBlocks:
        enabled: true
    
      # Reports when you have an empty rule set.
      EmptyRule:
        enabled: true
    
      # Reports when you have an @extend directive.