You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/linter.yml
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -75,11 +75,15 @@ jobs:
75
75
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
76
76
#JAVASCRIPT_ES_CONFIG_FILE: .eslintrc.yml
77
77
VALIDATE_ANSIBLE: false
78
+
VALIDATE_BIOME_FORMAT: false
79
+
VALIDATE_BIOME_LINT: false
78
80
VALIDATE_CSS: false
79
81
# TODO 211017 returns false positive `unknown Webhook event "workflow_call"`
80
82
VALIDATE_GITHUB_ACTIONS: false
81
83
# TODO 211003 returns false positive: {"line":" <li><a href=\"https://www.linkedin.com/company/MYCMSPROJECTSPECIFIC\" title=\"{=\"MYCMSPROJECTSPECIFIC na LinkedIn\"|translate}\"><i class=\"fa fa-linkedin\" aria-hidden=\"true\"></i></a></li>","lineNumber":56,"offender":"linkedin.com/company/MYCMSPROJECTSPECIFIC","offenderEntropy":-1,"commit":"","repo":"","repoURL":"","leakURL":"","rule":"LinkedIn Secret Key","commitMessage":"","author":"","email":"","file":".","date":"0001-01-01T00:00:00Z","tags":"secret, LinkedIn"}
82
84
VALIDATE_GITLEAKS: false
85
+
# Prettier is applied anyway and I don't want to have `.eslintrc.yml` configured
86
+
VALIDATE_JAVASCRIPT_ES: false
83
87
# 240803, there's no way to configure JAVASCRIPT_PRETTIER, neither it shows what exactly an issue is. Just 'Code style issue found in file.', which is useless.
84
88
VALIDATE_JAVASCRIPT_PRETTIER: false
85
89
#VALIDATE_JAVASCRIPT_STANDARD: false
@@ -90,3 +94,5 @@ jobs:
90
94
VALIDATE_PHP_PSALM: false
91
95
# 240519 .shfmt is not taken into account, so far
92
96
VALIDATE_SHELL_SHFMT: false
97
+
# Let's leave SPELL_CODESPELL to seablast-actions, where it is configurable
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -141,7 +141,7 @@ feat!: Admin UI can be rendered by Latte & filtering and sorting of tables fixed
141
141
142
142
- fix filtering and sorting of tables in Admin UI
143
143
- Admin UI can be rendered by Latte (instead directly from MyAdmin methods) if $featureFlags['admin_latte_render'] set to true (still experimental because the main part of body is prerendered as HTML)
144
-
- DivisionProducts, Pages, Products, Translations, `Urls` admin pages are generated in AdminModel classes invoked within Admin::controller (instead as spaghetti code within Admin::projectSpecificSections) (Feature flag 'legacy_admin_methods_instead_of_admin_models' => true forces execution of the old spagetti code)
144
+
- DivisionProducts, Pages, Products, Translations, `Urls` admin pages are generated in AdminModel classes invoked within Admin::controller (instead as spaghetti code within Admin::projectSpecificSections) (Feature flag 'legacy_admin_methods_instead_of_admin_models' => true forces execution of the old spaghetti code)
145
145
- where Translations and `Urls` admin page generation is moved to the the core so that further improvements are automatically available to the Apps using updated version of MyCMS
146
146
-**BREAKING CHANGE (feature flagged)** if $featureFlags['admin_latte_render']===false `dist/styles/admin.css.php` MUST be present (to link rel `admin.css` deep in vendor folder) and admin.php code has to be updated to alternatively use the latte rendering and toggle admin menu special links
147
147
@@ -155,7 +155,7 @@ feat!: Admin UI can be rendered by Latte & filtering and sorting of tables fixed
155
155
- instead of simply {include $latte} call {include 'inherite.latte', latte => $latte} so that the preferred existing version of latte is used
156
156
- new parameter to MyCustomFilters allows for another translate method (in order to use $tableAdmin->translate instead of $MyCMS->translate for Admin UI)
157
157
- featureFlags to `admin-*.latte`
158
-
- DivisionProducts, Pages, Products, Translations, `Urls` admin pages are generated in AdminModel classes invoked within Admin::controller (instead as spaghetti code within Admin::projectSpecificSections) (Feature flag 'legacy_admin_methods_instead_of_admin_models' => true forces execution of the old spagetti code)
158
+
- DivisionProducts, Pages, Products, Translations, `Urls` admin pages are generated in AdminModel classes invoked within Admin::controller (instead as spaghetti code within Admin::projectSpecificSections) (Feature flag 'legacy_admin_methods_instead_of_admin_models' => true forces execution of the old spaghetti code)
159
159
160
160
### Changed
161
161
@@ -204,10 +204,10 @@ refactor!: Less files in the application root folder
204
204
205
205
-**BREAKING CHANGE** dist/Test/AdminTest.php TableAdmin declaration expects language and prefixL10n
206
206
-**BREAKING CHANGE** dist/Test/ControllerTest.php MUST accomodate language both in GET and `_SESSION` as the checks are stricter in L10n
207
-
- App class handles the request dispatching instead of spagetti code in index.php
207
+
- App class handles the request dispatching instead of spaghetti code in index.php
208
208
- L10n (Localisation) class with loadLocalisation and translate methods common both for admin UI and MyCMS UI (instead of include php file with array for web UI and parsing yml for admin UI)
209
209
- dist/Admin::sectionTranslations uses new L10n class instead of including language.inc.php file directly
210
-
- MyAdminProcess::processTranslationsUpdate method created instead of code being spagetti part of dist/AdminProcess::adminProcess
210
+
- MyAdminProcess::processTranslationsUpdate method created instead of code being spaghetti part of dist/AdminProcess::adminProcess
0 commit comments