mirror of
https://github.com/zitadel/zitadel
synced 2024-11-22 08:49:13 +00:00
43f15953c3
* fix: grant PROJECT_OWNER_VIEWER_GLOBAL org.create permission * Update authz.yaml * feat: delete my user * console things * lint * signout after deletion * stylelint rule * Update authz.yaml * Update authz.yaml * setup step * role SELF_MANAGEMENT_GLOBAL setup * fix: change default role on global org * Apply suggestions from code review Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com> * Update console/src/assets/i18n/it.json Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com> Co-authored-by: Max Peintner <max@caos.ch> Co-authored-by: Fabi <38692350+fgerschwiler@users.noreply.github.com>
39 lines
1.3 KiB
Plaintext
39 lines
1.3 KiB
Plaintext
{
|
|
"plugins": ["stylelint-scss"],
|
|
"extends": "stylelint-config-standard",
|
|
"rules": {
|
|
"value-keyword-case": null,
|
|
"at-rule-no-unknown": null,
|
|
"no-descending-specificity": null,
|
|
"no-invalid-position-at-import-rule": null,
|
|
"at-rule-empty-line-before": [
|
|
"always",
|
|
{
|
|
"except": ["blockless-after-same-name-blockless", "first-nested"],
|
|
"ignore": ["after-comment"],
|
|
"ignoreAtRules": ["else"]
|
|
}
|
|
],
|
|
"block-closing-brace-newline-after": [
|
|
"always",
|
|
{
|
|
"ignoreAtRules": ["if", "else"]
|
|
}
|
|
],
|
|
"max-line-length": 125,
|
|
"no-empty-source": null,
|
|
"number-leading-zero": null,
|
|
"scss/at-rule-no-unknown": null,
|
|
"scss/at-else-if-parentheses-space-before": "always",
|
|
"scss/at-function-parentheses-space-before": "never",
|
|
"scss/at-if-closing-brace-newline-after": "always-last-in-chain",
|
|
"scss/at-import-no-partial-leading-underscore": true,
|
|
"scss/at-mixin-argumentless-call-parentheses": "always",
|
|
"scss/at-mixin-parentheses-space-before": "never",
|
|
"scss/dollar-variable-colon-newline-after": "always-multi-line",
|
|
"scss/dollar-variable-colon-space-after": "always-single-line",
|
|
"scss/double-slash-comment-whitespace-inside": "always",
|
|
"scss/no-duplicate-dollar-variables": true
|
|
}
|
|
}
|