Permalink
Cannot retrieve contributors at this time
15 lines (10 sloc)
525 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/no-config-found.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 { directoryPath } = it; | |
return ` | |
ESLint couldn't find a configuration file. To set up a configuration file for this project, please run: | |
npm init @eslint/config | |
ESLint looked for configuration files in ${directoryPath} and its ancestors. If it found none, it then looked in your home directory. | |
If you think you already have a configuration file or if you need more help, please stop by the ESLint Discord server: https://eslint.org/chat | |
`.trimStart(); | |
}; |