erosman

Results 411 comments of erosman

@rpl In above case, the linter reported that CSP contains "remote code execution" and that is NOT the case. It is falsely reporting that **"content_security_policy" allows remote code execution in...

It appears that when a container tab is opened by another process and that site is not listed, and `siteIsolation` is `true`, addon attempts to remove the tab and re-open...

I see .... Is the default `snippets.conf` completely commented off then? Where does the current built-in snippet come from? and where is it listed? PS. How do you handle space...

I understand now... thank you all for your help. The actual default is in `/user/share/geany/snippets.conf`. The one at `/home/-user-/.config/geany/snippets.conf` is the override snippet. AFA my questions, feel free to close...

What is the alternative (to use with CodeMirror 5)?

> Are there browsers that already support this feature? I haven't found it. My suggestion was to have a default compatibility table for all pages. Not having a table causes...

> p.s. IIRC we have done this trick to inject scripts into Firefox in an early version and successfully caught the reviewer's attention, leaving me with the impression that such...

> @erosman Thanks for the report. As you commented, this is a bug. > > I've labeled the issue as **ready to implement**. Please consider [contributing](https://stylelint.io/contributing) if you have time....

BTW, is CLA required by StyleLint? _(It prevented me from processing a PR in ESLint.)_

The point is that the code is valid. You can look at the examples on [Static initialization blocks](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes/Static_initialization_blocks). ```js class A { static field = "static field"; static { console.log(this.field);...