silverwind
silverwind
Shared template added but there is a unresolved issue on latest commit page and commit view: ``` Render failed, failed to render template: repo/home, error: template error: builtin(static):repo/commit_author:25:26 : executing...
Fixed above by not passing these invalid `.Author` on the two affected pages. I think this is ready now. The E-Mail adress is also no longer rendered into HTML for...
> Okay, I see. I assume it currently collects commits. In the future, we could consider adding an option to collect either commits or pull requests. It's practically useless to...
> > > Okay, I see. I assume it currently collects commits. In the future, we could consider adding an option to collect either commits or pull requests. > >...
Branch needs to be updated and it will likely have some new typescript issues because we enabled `strictNullChecks` in https://github.com/go-gitea/gitea/pull/35843.
This is a good idea but that method only works to some degree because some tooltips like the NPC one don't refresh constantly, so pressing a modifier while the tooltip...
I tried making it add/remove lines on MODIFIER_STATE_CHANGED, but have given up making it work. It's too complex to remove text from a tooltip. I think I will make something...
This proposal assumes `getRes` is pure and without side-effects, which I think can not be statically determined by the linter, so this rule might be dangerous in some cases.
I guess it will be very hard to determine side-effect freeness because things like Proxy etc exist, so even assignments can have side-effects. I guess the rule could be disabled...
Yes of course it'd only enable it for carefully selected functions. For Array and Object, I could see ```` Array.isArray Array.of Array.prototype.concat Array.prototype.filter Array.prototype.includes Array.prototype.indexOf Array.prototype.join Array.prototype.lastIndexOf Array.prototype.slice Array.prototype.toSource Array.prototype.toString...