作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
$ grunt eslint Running "eslint:files" (eslint)-6ren">
最近,我们已升级至 ESLint 3.0.0并开始收到以下运行 grunt eslint
任务的消息:
> $ grunt eslint
Running "eslint:files" (eslint) task
Warning: No ESLint configuration found. Use --force to continue.
这是grunt-eslint
配置:
var lintTargets = [
"<%= app.src %>/**/*/!(*test|swfobject)+(.js)",
"test/e2e/**/*/*.js",
"!test/e2e/db/models/*.js"
];
module.exports.tasks = {
eslint: {
files: {
options: {
config: 'eslint.json',
fix: true,
rulesdir: ['eslint_rules']
},
src: lintTargets
}
}
};
我们应该如何修复该错误?
最佳答案
我也遇到过同样的错误。看来需要配置一下。
转到项目根目录并在终端中运行
./node_modules/.bin/eslint --init
关于javascript - "No ESLint configuration found"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38173326/
我是一名优秀的程序员,十分优秀!