Revision 10c080dad16c3e65e880a8000a9e290f37f2eb72 authored by Gabriel MABILLE on 12 October 2022, 11:33:33 UTC, committed by GitHub on 12 October 2022, 11:33:33 UTC
* LDAP: Add skip_org_role_sync option

* Document the new config option

* Nit on docs

* Update docs/sources/setup-grafana/configure-security/configure-authentication/ldap.md

Co-authored-by: Christopher Moyer <35463610+chri2547@users.noreply.github.com>

* Docs suggestions

Co-authored-by: Christopher Moyer <35463610+chri2547@users.noreply.github.com>
Co-authored-by: Jguer <joao.guerreiro@grafana.com>

* Add test, Fix disabled user when no role

Co-authored-by: Christopher Moyer <35463610+chri2547@users.noreply.github.com>
Co-authored-by: Jguer <joao.guerreiro@grafana.com>
1 parent 72b9555
Raw File
stylelint.config.js
module.exports = {
  extends: ['stylelint-config-sass-guidelines', 'stylelint-config-prettier'],
  ignoreFiles: ['**/node_modules/**/*.scss'],
  rules: {
    'at-rule-no-vendor-prefix': null,
    'color-hex-case': null,
    'color-hex-length': null,
    'color-named': null,
    'declaration-block-no-duplicate-properties': [
      true,
      {
        ignore: 'consecutive-duplicates-with-different-values',
        ignoreProperties: ['font-size', 'word-break'],
      },
    ],
    // Disable equivalent "borderZero" sass-lint rule
    'declaration-property-value-disallowed-list': {
      border: [],
      'border-bottom': [],
      'border-left': [],
      'border-right': [],
      'border-top': [],
    },
    'function-comma-space-after': null,
    'function-url-quotes': null,
    'length-zero-no-unit': null,
    'max-nesting-depth': null,
    'number-no-trailing-zeros': null,
    'order/order': null,
    'order/properties-alphabetical-order': null,
    'property-no-vendor-prefix': null,
    'rule-empty-line-before': null,
    'scss/at-function-pattern': null,
    'scss/at-mixin-pattern': null,
    'scss/dollar-variable-pattern': null,
    'scss/at-extend-no-missing-placeholder': null,
    'selector-class-pattern': null,
    'selector-max-compound-selectors': null,
    'selector-max-id': null,
    'selector-no-qualifying-type': null,
    'selector-pseudo-element-colon-notation': null,
    'shorthand-property-no-redundant-values': null,
    'value-no-vendor-prefix': null,
  },
};
back to top