summaryrefslogtreecommitdiff
path: root/.jscheckignore
Commit message (Collapse)AuthorAgeFilesLines
* ci: Don't ignore init.jsFlorian Müllner2023-04-211-1/+0
| | | | | | | Unlike js102, the gjs-check-syntax script supports modules, so there's no longer a reason for ignoring the file. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2193>
* init: Set console log domainEvan Welsh2021-09-011-0/+1
GJS added a console module that extensions may start using. To ensure that extensions using console.log() and similar functions don't show up as 'Gjs-Console' in users' system logs, we should call setConsoleLogdomain() with 'GNOME Shell'. This GJS API addition is only accessible using ECMAScript Modules (ESM), this commit moves shell startup to a small init.js module and adapts CI jobs to either handle or ignore it. We can drop the .jscheckignore file when future versions of SpiderMonkey allow for compile checks without validating module specifiers. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1958>