我正在使用JSHint
在Ionic框架项目上提取我的ES6
代码。我需要配置列表才能使用ES6。似乎当我运行linter时,通过使用一个小脚本,它不会读取配置文件.jshintrc
。我收到了很多错误:
'arrow function syntax (=>)' is only available in ES6 (use esnext option). -> $ionicPlatform.ready(() => {
我的.jshintrc文件:
{
"asi": false,
"boss": true,
"curly": true,
"eqeqeq": false,
"eqnull": true,
"esnext": true,
"expr": true,
"forin": true,
"immed": true,
"laxbreak": true,
"newcap": false,
"noarg": true,
"node": true,
"nonew": true,
"plusplus": true,
"quotmark": "single",
"strict": false,
"undef": true,
"unused": true
}
我正在使用Hooks / before_prepare
中包含的脚本运行JSHint#!/usr/bin/env node
var fs = require('fs');
var path = require('path');
var jshint = require('jshint').JSHINT;
var async = require('async');
var foldersToProcess = [
'js6/',
'js6/controllers',
'js6/controllers/schedule',
];
foldersToProcess.forEach(function(folder) {
processFiles("www/" + folder);
});
function processFiles(dir, callback) {
var errorCount = 0;
fs.readdir(dir, function(err, list) {
if (err) {
console.log('processFiles err: ' + err);
return;
}
async.eachSeries(list, function(file, innercallback) {
file = dir + '/' + file;
fs.stat(file, function(err, stat) {
if(!stat.isDirectory()) {
if(path.extname(file) === ".js") {
lintFile(file, function(hasError) {
if(hasError) {
errorCount++;
}
innercallback();
});
} else {
innercallback();
}
} else {
innercallback();
}
});
}, function(error) {
if(errorCount > 0) {
process.exit(1);
}
});
});
}
function lintFile(file, callback) {
console.log("Linting " + file);
fs.readFile(file, function(err, data) {
if(err) {
console.log('Error: ' + err);
return;
}
if(jshint(data.toString())) {
console.log('File ' + file + ' has no errors.');
console.log('-----------------------------------------');
callback(false);
} else {
console.log('Errors in file ' + file);
var out = jshint.data(),
errors = out.errors;
for(var j = 0; j < errors.length; j++) {
console.log(errors[j].line + ':' + errors[j].character + ' -> ' + errors[j].reason + ' -> ' +
errors[j].evidence);
}
console.log('-----------------------------------------');
callback(true);
}
});
}
文件结构是一个典型的cordova项目结构,我有一个www文件夹,里面有一个js6文件夹 - &gt; js6 - &gt;控制器 - &gt;时间表
答案 0 :(得分:-1)
变化
if(jshint(data.toString())) {
到
if(jshint(data.toString(), {esnext:true}})) {
或者您可以先读取.jshintrc文件的内容,然后在此处设置jshint配置。另见https://github.com/jetma/cordova-hooks/blob/master/before_prepare/02_jshint.js/。