Skip to content

Commit b4eb0aa

Browse files
chore: merged development for changes
2 parents 1102b0c + 1232833 commit b4eb0aa

316 files changed

Lines changed: 46596 additions & 46362 deletions

File tree

Some content is hidden

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

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@ yarn-error.log*
2727
/.idea
2828

2929
.vscode/launch.json
30-
.vscode/settings.json
3130

3231
**\ **
3332

34-
/public/tinymce/
33+
/public/tinymce/Community/
34+
Community/
35+
public/tinymce/

.husky/pre-push

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@ if [ -z "$changed_files" ]; then
2525
exit 0
2626
fi
2727

28+
# Skip checks if any outgoing commit is a merge commit
29+
if git log @{upstream}..HEAD --merges --oneline | grep -q .; then
30+
echo "ℹ️ Outgoing commits include a merge commit. Skipping lint/test checks."
31+
exit 0
32+
fi
33+
2834
if ! printf '%s\n' "$changed_files" | grep -qvE '^\.husky/'; then
2935
echo "ℹ️ Only Husky hook changes detected. Skipping full test and lint checks."
3036
exit 0

.stylelintrc

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,22 @@
66
"node_modules/**/*.css"
77
],
88
"rules": {
9-
"no-duplicate-selectors": true,
9+
"no-duplicate-selectors": [true, {
10+
"disallowInList": false
11+
}],
1012
"selector-pseudo-class-no-unknown": [
1113
true,
1214
{ "ignorePseudoClasses": ["global", "local"] }
1315
],
1416
"selector-class-pattern": null,
1517
"selector-id-pattern": null
16-
}
17-
}
18+
},
19+
"overrides": [
20+
{
21+
"files": ["**/*.module.css"],
22+
"rules": {
23+
"no-duplicate-selectors": null
24+
}
25+
}
26+
]
27+
}

conflict_cplog.txt

2.81 KB
Binary file not shown.

conflict_finalday.txt

16.1 KB
Binary file not shown.

conflict_owner.txt

4.06 KB
Binary file not shown.

conflict_popup.txt

1.74 KB
Binary file not shown.

conflict_spg.txt

26.3 KB
Binary file not shown.

conflict_usertable.txt

2.4 KB
Binary file not shown.

conflict_weekly.txt

1.74 KB
Binary file not shown.

0 commit comments

Comments
 (0)