Oops! Something went wrong! :( ESLint: 7.15.0 You are linting "src", but all of the files matching the glob pattern "src" are ignored. If you don't want to lint these files, remove the pattern "src" 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.
时间: 2024-02-29 16:57:31 浏览: 629
如何解决ChatGPT常见的错误信息Something went wrong
这个错误提示是ESLint在运行时遇到了问题。根据错误提示,ESLint正在尝试对"src"目录进行代码检查,但是它发现所有匹配到的文件都被忽略了。这可能是由于以下原因导致的:
1. 你的".eslintignore"文件或package.json中的"eslintIgnore"属性可能将这些文件配置为被忽略。
2. 你在命令行中提供了一个无效的glob模式。
为了解决这个问题,你可以尝试以下几个方法:
1. 检查".eslintignore"文件或package.json中的"eslintIgnore"属性,确保文件没有被配置为被忽略。
2. 明确指定要检查的文件,而不是使用通配符。例如,你可以运行`eslint file1.js file2.js`命令来检查"file1.js"和"file2.js"文件。
3. 如果你确定想要对整个目录进行检查,可以使用`eslint ./src`命令来明确指定要检查的目录。
希望以上方法能够帮助你解决问题。
阅读全文