Skip to content

Commit 80dd58f

Browse files
committed
v0.9.0
1 parent 2184502 commit 80dd58f

File tree

231 files changed

+81391
-8368
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

231 files changed

+81391
-8368
lines changed

.editorconfig

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1+
root = true
2+
13
[*]
24
charset=utf-8
35
end_of_line=lf
6+
indent_style=tab
47
trim_trailing_whitespace=true
58
insert_final_newline=true
6-
indent_style=tab
7-
indent_size=4
9+
max_line_length = 115
810

911
[*.{json,md}]
1012
# Hack to make Prettier not collapse arrays

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
git remote set-url origin "https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY"
104104
git fetch origin "main"
105105
git switch -c "main" "origin/main"
106-
git commit -m "${{ github.event.release.tag_name }}"
106+
git commit -m "${{ env.RELEASE_VERSION }}"
107107
git push -f
108108
109109
- name: Push Image

.stylelintrc.json

Lines changed: 16 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,21 @@
11
{
2-
"extends": "stylelint-config-sass-guidelines",
2+
"extends": [
3+
"stylelint-config-standard-scss"
4+
],
5+
"plugins": [
6+
"stylelint-scss"
7+
],
38
"rules": {
4-
"indentation": "tab",
5-
"order/properties-order": [
6-
"position",
7-
"z-index",
8-
"top",
9-
"right",
10-
"bottom",
11-
"left",
12-
"margin",
13-
"margin-top",
14-
"margin-right",
15-
"margin-bottom",
16-
"margin-left",
17-
"padding",
18-
"padding-top",
19-
"padding-right",
20-
"padding-bottom",
21-
"padding-left"
22-
],
23-
"order/properties-alphabetical-order": null,
24-
"color-named": "always-where-possible",
25-
"selector-no-qualifying-type": null,
26-
"selector-max-compound-selectors": null,
27-
"selector-max-id": null,
28-
"selector-class-pattern": null,
29-
"max-nesting-depth": null,
9+
"comment-empty-line-before": null,
10+
"keyframes-name-pattern": null,
11+
"no-descending-specificity": null,
12+
"no-duplicate-selectors": null,
13+
"number-max-precision": null,
3014
"scss/at-mixin-pattern": null,
31-
"scss/dollar-variable-pattern": null
15+
"scss/dollar-variable-pattern": null,
16+
"scss/double-slash-comment-empty-line-before": null,
17+
"selector-class-pattern": null,
18+
"selector-id-pattern": null,
19+
"selector-not-notation": null
3220
}
3321
}

css/classes.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/classes.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/search.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

css/style.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)