Permalink
Cannot retrieve contributors at this time
16 lines (11 sloc)
665 Bytes
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/eslint/messages/all-files-ignored.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
module.exports = function(it) { | |
const { pattern } = it; | |
return ` | |
You are linting "${pattern}", but all of the files matching the glob pattern "${pattern}" are ignored. | |
If you don't want to lint these files, remove the pattern "${pattern}" from the list of arguments passed to ESLint. | |
If you do want to lint these files, try the following solutions: | |
* Check your .eslintignore file, or the eslintIgnore property in package.json, to ensure that the files are not configured to be ignored. | |
* Explicitly list the files from this glob that you'd like to lint on the command-line, rather than providing a glob as an argument. | |
`.trimStart(); | |
}; |