aboutsummaryrefslogtreecommitdiffstats
path: root/.stylelintrc.yaml
diff options
context:
space:
mode:
authorsilverwind <me@silverwind.io>2024-02-02 10:36:32 +0100
committerGitHub <noreply@github.com>2024-02-02 09:36:32 +0000
commita062725758b765cdedd1b02da5982c6fbfc5f702 (patch)
tree5779c8f1df2748bf686d22c16ff30aac68927a46 /.stylelintrc.yaml
parent71422c0e3b80679c11a0f9a7036b557e851d0c78 (diff)
downloadgitea-a062725758b765cdedd1b02da5982c6fbfc5f702.tar.gz
gitea-a062725758b765cdedd1b02da5982c6fbfc5f702.zip
Update JS and PY dependencies, build for `es2020` browsers (#28977)
- Update all JS dependencies minus @mcaptcha/vanilla-glue - Fix new lint errors - Regenerate SVGs - Switch to maintained stylelint stylistic plugin - Tested Mermaid, Citation, Swagger, sorting - Raise ESBuild target to `es2020` as dictated by `pretty-ms` dependency.
Diffstat (limited to '.stylelintrc.yaml')
-rw-r--r--.stylelintrc.yaml154
1 files changed, 77 insertions, 77 deletions
diff --git a/.stylelintrc.yaml b/.stylelintrc.yaml
index d1be3eed82..a44294ee76 100644
--- a/.stylelintrc.yaml
+++ b/.stylelintrc.yaml
@@ -1,7 +1,7 @@
plugins:
- stylelint-declaration-strict-value
- stylelint-declaration-block-no-ignored-properties
- - stylelint-stylistic
+ - "@stylistic/stylelint-plugin"
ignoreFiles:
- "**/*.go"
@@ -17,6 +17,82 @@ overrides:
customSyntax: postcss-html
rules:
+ "@stylistic/at-rule-name-case": null
+ "@stylistic/at-rule-name-newline-after": null
+ "@stylistic/at-rule-name-space-after": null
+ "@stylistic/at-rule-semicolon-newline-after": null
+ "@stylistic/at-rule-semicolon-space-before": null
+ "@stylistic/block-closing-brace-empty-line-before": null
+ "@stylistic/block-closing-brace-newline-after": null
+ "@stylistic/block-closing-brace-newline-before": null
+ "@stylistic/block-closing-brace-space-after": null
+ "@stylistic/block-closing-brace-space-before": null
+ "@stylistic/block-opening-brace-newline-after": null
+ "@stylistic/block-opening-brace-newline-before": null
+ "@stylistic/block-opening-brace-space-after": null
+ "@stylistic/block-opening-brace-space-before": null
+ "@stylistic/color-hex-case": lower
+ "@stylistic/declaration-bang-space-after": never
+ "@stylistic/declaration-bang-space-before": null
+ "@stylistic/declaration-block-semicolon-newline-after": null
+ "@stylistic/declaration-block-semicolon-newline-before": null
+ "@stylistic/declaration-block-semicolon-space-after": null
+ "@stylistic/declaration-block-semicolon-space-before": never
+ "@stylistic/declaration-block-trailing-semicolon": null
+ "@stylistic/declaration-colon-newline-after": null
+ "@stylistic/declaration-colon-space-after": null
+ "@stylistic/declaration-colon-space-before": never
+ "@stylistic/function-comma-newline-after": null
+ "@stylistic/function-comma-newline-before": null
+ "@stylistic/function-comma-space-after": null
+ "@stylistic/function-comma-space-before": null
+ "@stylistic/function-max-empty-lines": 0
+ "@stylistic/function-parentheses-newline-inside": never-multi-line
+ "@stylistic/function-parentheses-space-inside": null
+ "@stylistic/function-whitespace-after": null
+ "@stylistic/indentation": 2
+ "@stylistic/linebreaks": null
+ "@stylistic/max-empty-lines": 1
+ "@stylistic/max-line-length": null
+ "@stylistic/media-feature-colon-space-after": null
+ "@stylistic/media-feature-colon-space-before": never
+ "@stylistic/media-feature-name-case": null
+ "@stylistic/media-feature-parentheses-space-inside": null
+ "@stylistic/media-feature-range-operator-space-after": always
+ "@stylistic/media-feature-range-operator-space-before": always
+ "@stylistic/media-query-list-comma-newline-after": null
+ "@stylistic/media-query-list-comma-newline-before": null
+ "@stylistic/media-query-list-comma-space-after": null
+ "@stylistic/media-query-list-comma-space-before": null
+ "@stylistic/no-empty-first-line": null
+ "@stylistic/no-eol-whitespace": true
+ "@stylistic/no-extra-semicolons": true
+ "@stylistic/no-missing-end-of-source-newline": null
+ "@stylistic/number-leading-zero": null
+ "@stylistic/number-no-trailing-zeros": null
+ "@stylistic/property-case": lower
+ "@stylistic/selector-attribute-brackets-space-inside": null
+ "@stylistic/selector-attribute-operator-space-after": null
+ "@stylistic/selector-attribute-operator-space-before": null
+ "@stylistic/selector-combinator-space-after": null
+ "@stylistic/selector-combinator-space-before": null
+ "@stylistic/selector-descendant-combinator-no-non-space": null
+ "@stylistic/selector-list-comma-newline-after": null
+ "@stylistic/selector-list-comma-newline-before": null
+ "@stylistic/selector-list-comma-space-after": always-single-line
+ "@stylistic/selector-list-comma-space-before": never-single-line
+ "@stylistic/selector-max-empty-lines": 0
+ "@stylistic/selector-pseudo-class-case": lower
+ "@stylistic/selector-pseudo-class-parentheses-space-inside": never
+ "@stylistic/selector-pseudo-element-case": lower
+ "@stylistic/string-quotes": double
+ "@stylistic/unicode-bom": null
+ "@stylistic/unit-case": lower
+ "@stylistic/value-list-comma-newline-after": null
+ "@stylistic/value-list-comma-newline-before": null
+ "@stylistic/value-list-comma-space-after": null
+ "@stylistic/value-list-comma-space-before": null
+ "@stylistic/value-list-max-empty-lines": 0
alpha-value-notation: null
annotation-no-unknown: true
at-rule-allowed-list: null
@@ -137,82 +213,6 @@ rules:
selector-type-no-unknown: [true, {ignore: [custom-elements]}]
shorthand-property-no-redundant-values: true
string-no-newline: true
- stylistic/at-rule-name-case: null
- stylistic/at-rule-name-newline-after: null
- stylistic/at-rule-name-space-after: null
- stylistic/at-rule-semicolon-newline-after: null
- stylistic/at-rule-semicolon-space-before: null
- stylistic/block-closing-brace-empty-line-before: null
- stylistic/block-closing-brace-newline-after: null
- stylistic/block-closing-brace-newline-before: null
- stylistic/block-closing-brace-space-after: null
- stylistic/block-closing-brace-space-before: null
- stylistic/block-opening-brace-newline-after: null
- stylistic/block-opening-brace-newline-before: null
- stylistic/block-opening-brace-space-after: null
- stylistic/block-opening-brace-space-before: null
- stylistic/color-hex-case: lower
- stylistic/declaration-bang-space-after: never
- stylistic/declaration-bang-space-before: null
- stylistic/declaration-block-semicolon-newline-after: null
- stylistic/declaration-block-semicolon-newline-before: null
- stylistic/declaration-block-semicolon-space-after: null
- stylistic/declaration-block-semicolon-space-before: never
- stylistic/declaration-block-trailing-semicolon: null
- stylistic/declaration-colon-newline-after: null
- stylistic/declaration-colon-space-after: null
- stylistic/declaration-colon-space-before: never
- stylistic/function-comma-newline-after: null
- stylistic/function-comma-newline-before: null
- stylistic/function-comma-space-after: null
- stylistic/function-comma-space-before: null
- stylistic/function-max-empty-lines: 0
- stylistic/function-parentheses-newline-inside: never-multi-line
- stylistic/function-parentheses-space-inside: null
- stylistic/function-whitespace-after: null
- stylistic/indentation: 2
- stylistic/linebreaks: null
- stylistic/max-empty-lines: 1
- stylistic/max-line-length: null
- stylistic/media-feature-colon-space-after: null
- stylistic/media-feature-colon-space-before: never
- stylistic/media-feature-name-case: null
- stylistic/media-feature-parentheses-space-inside: null
- stylistic/media-feature-range-operator-space-after: always
- stylistic/media-feature-range-operator-space-before: always
- stylistic/media-query-list-comma-newline-after: null
- stylistic/media-query-list-comma-newline-before: null
- stylistic/media-query-list-comma-space-after: null
- stylistic/media-query-list-comma-space-before: null
- stylistic/no-empty-first-line: null
- stylistic/no-eol-whitespace: true
- stylistic/no-extra-semicolons: true
- stylistic/no-missing-end-of-source-newline: null
- stylistic/number-leading-zero: null
- stylistic/number-no-trailing-zeros: null
- stylistic/property-case: lower
- stylistic/selector-attribute-brackets-space-inside: null
- stylistic/selector-attribute-operator-space-after: null
- stylistic/selector-attribute-operator-space-before: null
- stylistic/selector-combinator-space-after: null
- stylistic/selector-combinator-space-before: null
- stylistic/selector-descendant-combinator-no-non-space: null
- stylistic/selector-list-comma-newline-after: null
- stylistic/selector-list-comma-newline-before: null
- stylistic/selector-list-comma-space-after: always-single-line
- stylistic/selector-list-comma-space-before: never-single-line
- stylistic/selector-max-empty-lines: 0
- stylistic/selector-pseudo-class-case: lower
- stylistic/selector-pseudo-class-parentheses-space-inside: never
- stylistic/selector-pseudo-element-case: lower
- stylistic/string-quotes: double
- stylistic/unicode-bom: null
- stylistic/unit-case: lower
- stylistic/value-list-comma-newline-after: null
- stylistic/value-list-comma-newline-before: null
- stylistic/value-list-comma-space-after: null
- stylistic/value-list-comma-space-before: null
- stylistic/value-list-max-empty-lines: 0
time-min-milliseconds: null
unit-allowed-list: null
unit-disallowed-list: null