-
-
Notifications
You must be signed in to change notification settings - Fork 169
Closed
Labels
Description
Motivation
With require-file-overview rule we're able to enforce a @file tag for each JS file. However, this could not be enough for some projects. I want to be able to enforce also a comment just after the @file tag:
/**
* @file
* Relevant description about what this file is doing.
*/Current behavior
This doc block is valid:
/**
* @file
*/Desired behavior
I would like to have an option that enforces this:
/**
* @file
* Relevant description about what this file is doing.
*/Alternatives considered
N/A