
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
@tony.ganchev/eslint-plugin-header
Advanced tools
ESLint plugin to ensure that files begin with given comment
This is a fork of https://github.com/Stuk/eslint-plugin-header intended to make the plugin work with ESLint v9
ESLint plugin to ensure that files begin with given comment.
Often you will want to have a copyright notice at the top of every file. This ESLint plugin checks that the first comment in every file has the contents defined in the rule settings.
This rule takes 1, 2 or 3 arguments with an optional settings object.
In the 1 argument form the argument is the filename of a file that contains the comment(s) that should appear at the top of every file:
{
"plugins": [
"header"
],
"rules": {
"header/header": [2, "config/header.js"]
}
}
config/header.js:
// Copyright 2015
// My company
Due to limitations in eslint plugins, the file is read relative to the working directory that eslint is executed in. If you run eslint from elsewhere in your tree then the header file will not be found.
In the 2 argument form the first must be either "block"
or "line"
to indicate what style of comment should be used. The second is either a string (including newlines) of the comment, or an array of each line of the comment.
{
"plugins": [
"header"
],
"rules": {
"header/header": [2, "block", "Copyright 2015\nMy Company"]
}
}
The optional third argument which defaults to 1 specifies the number of newlines that are enforced after the header.
Zero newlines:
{
"plugins": [
"header"
],
"rules": {
"header/header": [2, "block", [" Copyright now","My Company "], 0]
}
}
/* Copyright now
My Company */ console.log(1)
One newline (default)
{
"plugins": [
"header"
],
"rules": {
"header/header": [2, "block", [" Copyright now","My Company "], 1]
}
}
/* Copyright now
My Company */
console.log(1)
two newlines
{
"plugins": [
"header"
],
"rules": {
"header/header": [2, "block", [" Copyright now","My Company "], 2]
}
}
/* Copyright now
My Company */
console.log(1)
Instead of a string to be checked for exact matching you can also supply a regular expression. Be aware that you have to escape backslashes:
{
"plugins": [
"header"
],
"rules": {
"header/header": [2, "block", [
{"pattern": " Copyright \\d{4}"},
"My Company"
]]
}
}
This would match:
/* Copyright 2808
My Company*/
When you use a regular expression pattern
, you can also provide a template
property, to provide the comment value when using eslint --fix
:
{
"plugins": [
"header"
],
"rules": {
"header/header": [2, "block", [
{"pattern": " Copyright \\d{4}", "template": " Copyright 2019"},
"My Company"
]]
}
}
The rule works with both unix and windows line endings. For ESLint --fix
, the rule will use the line ending format of the current operating system (via the node os
package). This setting can be overwritten as follows:
"rules": {
"header/header": [2, "block", ["Copyright 2018", "My Company"], {"lineEndings": "windows"}]
}
Possible values are unix
for \n
and windows
for \r\n
line endings.
The following examples are all valid.
"block", "Copyright 2015, My Company"
:
/*Copyright 2015, My Company*/
console.log(1);
"line", ["Copyright 2015", "My Company"]]
:
//Copyright 2015
//My Company
console.log(1)
"line", [{pattern: "^Copyright \\d{4}$"}, {pattern: "^My Company$"}]]
:
//Copyright 2017
//My Company
console.log(1)
"header/header": [2, "block", [
"************************",
" * Copyright 2015",
" * My Company",
" ************************"
]
/*************************
* Copyright 2015
* My Company
*************************/
console.log(1);
MIT
FAQs
ESLint plugin to ensure that files begin with given comment
The npm package @tony.ganchev/eslint-plugin-header receives a total of 10,002 weekly downloads. As such, @tony.ganchev/eslint-plugin-header popularity was classified as popular.
We found that @tony.ganchev/eslint-plugin-header demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
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.
Research
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.