Skip to content
Snippets Groups Projects
Select Git revision
  • 2a61f2b24c8a6d92f9a46d452fc8cb5b221d1e5c
  • develop default
  • ilja_space
  • improve_delete_user_confirmation_message
  • add_moderation_menu_for_moderators
  • 828-show-description-of-all-mrf-policies
  • hotfix/summary-html
  • feature/media-timeline
  • switch-to-string-ids
  • feat/media-modal
  • referrer-caching-fix
  • package-updates
  • fix-265-fix-user-profiles-again
  • fix-262-load-older
  • scope-copy-default
  • restore-routes
  • fix_notifications
  • fix-tab-scroll
  • multiline-tabs
  • fix-hide-network
  • async_follow
21 results

.editorconfig

Blame
  • Forked from Pleroma / pleroma-fe
    Source project has a limited visibility.
    .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.