
Product
Introducing Scala and Kotlin Support in Socket
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
@mapbox/stylelint-processor-arbitrary-tags
Advanced tools
A stylelint processor that allows you to lint CSS within arbitrary tags
A stylelint processor that allows you to lint CSS within arbitrary tags.
The module uses a regular expression to identify code within the specified tags, then passes the code on to stylelint.
By default, it looks for code within <style>
tags (see default options below). But you can change the regular expression to find code within other tags, like {% highlight css %}...{% endhighlight %}
for Jekyll templates, or /* start css */.../* end css */
within a JS file, or who knows what else.
npm install @mapbox/stylelint-processor-arbitrary-tags
Type: string
that's RegExp-ready
Default:
'[^`\'"]<style[\\s\\S]*?>'
Type: string
that's RegExp-ready
Default:
'</\\s*?style>'
Type: string
that's RegExp-ready
Default:
'[\\s\\S]*?'
Type: array<RegExp|string>
that's an array of regular expressions or strings that describe files that you want to be processed with this module.
Matches will be processed; files that do not match will not be.
Given the following value, only .html
files will be processed:
fileFilterRegex: [/\.html$/]
You can also use regular expression strings instead of regular expression literals. This is necessary if you are using yaml-based configuration and can't use regular expression literals. Yaml variant of example above:
- fileFilterRegex:
- '\.html$'
This is useful when you want to create different settings for HTML and markdown, for instance.
When empty ([]
), every file will pass through the filter and be processed by this module.
Default:
[]
Do not use this processor with the no-empty-source
rule. If you do, you will have warnings whenever a file does not contain any matches for your regular expression.
0.4.0
FAQs
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket now supports Scala and Kotlin, bringing AI-powered threat detection to JVM projects with easy manifest generation and fast, accurate scans.
Application Security
/Security News
Socket CEO Feross Aboukhadijeh and a16z partner Joel de la Garza discuss vibe coding, AI-driven software development, and how the rise of LLMs, despite their risks, still points toward a more secure and innovative future.
Research
/Security News
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.