
Security News
Potemkin Understanding in LLMs: New Study Reveals Flaws in AI Benchmarks
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
eslint-plugin-header
Advanced tools
The eslint-plugin-header package is an ESLint plugin that allows you to enforce consistent header comments in your JavaScript files. This can be useful for ensuring that all files in a project contain specific licensing information, author details, or any other required header content.
Enforce Header Comments
This feature allows you to enforce a specific header comment at the top of your JavaScript files. The configuration specifies the type of comment (block in this case) and the content of the header.
module.exports = {
"plugins": ["header"],
"rules": {
"header/header": [2, "block", [
"*",
" This is a header comment",
" Author: Your Name",
" License: MIT",
"*/"
]]
}
};
Customizable Header Content
You can customize the content of the header to include project-specific information such as the project name, author, and date. This ensures that all files have consistent and up-to-date header information.
module.exports = {
"plugins": ["header"],
"rules": {
"header/header": [2, "block", [
"*",
" Project: My Project",
" Author: Your Name",
" Date: 2023-10-01",
"*/"
]]
}
};
Support for Different Comment Styles
The plugin supports different styles of comments, such as line comments. This allows you to choose the comment style that best fits your project's coding standards.
module.exports = {
"plugins": ["header"],
"rules": {
"header/header": [2, "line", [
"// This is a header comment",
"// Author: Your Name",
"// License: MIT"
]]
}
};
The eslint-plugin-license-header package is another ESLint plugin that enforces license headers in your files. It is similar to eslint-plugin-header but focuses specifically on license information. It allows for customizable license templates and supports various comment styles.
The eslint-plugin-file-header package is designed to enforce file headers in your JavaScript files. It offers similar functionality to eslint-plugin-header, allowing you to specify the content and format of the headers. It also supports placeholders for dynamic content such as the current date.
The eslint-plugin-jsdoc package is primarily focused on enforcing JSDoc comments in your code. While it is not specifically designed for file headers, it can be configured to ensure that certain JSDoc comments are present at the top of your files, providing similar functionality to eslint-plugin-header.
Ensure that source files have a certain header.
{
"plugins": [
"header"
],
"rules": {
"header": [2, "block", "Copyright 2015\nMy Company"]
}
}
FAQs
ESLint plugin to ensure that files begin with given comment
The npm package eslint-plugin-header receives a total of 376,592 weekly downloads. As such, eslint-plugin-header popularity was classified as popular.
We found that eslint-plugin-header demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.