Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit d8feaaf

Browse files
authoredAug 28, 2022
feat(css-modules): initial version of css modules (#2676)
1 parent 1fcda83 commit d8feaaf

File tree

235 files changed

+7579
-6767
lines changed

Some content is hidden

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

235 files changed

+7579
-6767
lines changed
 

‎.stylelintrc.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
2-
"extends": [
3-
"stylelint-config-recommended-scss"
4-
],
5-
"plugins": [
6-
"stylelint-order",
7-
"stylelint-selector-bem-pattern"
8-
],
2+
"extends": ["stylelint-config-recommended-scss"],
3+
"plugins": ["stylelint-order", "stylelint-selector-bem-pattern"],
94
"rules": {
105
"order/properties-alphabetical-order": true,
116
"no-descending-specificity": null,
12-
"scss/at-import-partial-extension": "always"
7+
"scss/at-extend-no-missing-placeholder": null,
8+
"scss/at-import-partial-extension": "always",
9+
"selector-pseudo-class-no-unknown": [
10+
true,
11+
{ "ignorePseudoClasses": ["global"] }
12+
]
1313
}
1414
}

‎firebase.json

+10-5
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,6 @@
4545
"destination": "/about/releases/",
4646
"type": "301"
4747
},
48-
{
49-
"source": "/trademark/",
50-
"destination": "/about/trademark/",
51-
"type": "301"
52-
},
5348
{
5449
"source": "/privacy/",
5550
"destination": "/about/privacy/",
@@ -59,6 +54,16 @@
5954
"source": "/security/",
6055
"destination": "/about/security/",
6156
"type": "301"
57+
},
58+
{
59+
"source": "/trademark/",
60+
"destination": "https://trademark-policy.openjsf.org/",
61+
"type": "301"
62+
},
63+
{
64+
"source": "/about/trademark/",
65+
"destination": "https://trademark-policy.openjsf.org/",
66+
"type": "301"
6267
}
6368
]
6469
}

0 commit comments

Comments
 (0)
Failed to load comments.