JSLint 和 ESLint 问题(括号)

Posted

技术标签:

【中文标题】JSLint 和 ESLint 问题(括号)【英文标题】:JSLint and ESLint Problems (Brackets) 【发布时间】:2019-07-31 03:39:13 【问题描述】:

我正在为我正在做的一个小项目创建一个模拟网站。我正在使用 nunjucks 来执行一些任务。当我尝试创建一个稍后可以运行的 .js 文件时,我遇到了错误。

我在网上查看过,并尝试了所有解决方案。我无法让它们中的任何一个工作。

我的代码:

const nunjucks = require('nunjucks');
const fs = require('fs');  // The file system module

let files = ["index.html", "About.html", "Membership.html", "Fighting%20Kites.html"];
let srcDir = "./content/";
let outDir = "./output/";

// Tells nunjucks where to look for templates and set any options
nunjucks.configure('views',  autoescape: true );

for (let fname of files) 
let contents = fs.readFileSync(srcDir + fname);
let outString = nunjucks.render('base.njk', mainContent: contents);
fs.writeFileSync(outDir + fname, outString);
console.log(`Wrote file: $fname`);

我的错误信息:

JSLint (2)
1   Expected an identifier and instead saw 'const'. const nunjucks = require('nunjucks');
1   Stopping. (10% scanned).    const nunjucks = require('nunjucks');

ESLint (1)
1   ERROR: Parsing error: The keyword 'const' is reserved   const nunjucks = require('nunjucks');

我不知道如何解决这个问题。任何想法都有帮助。

【问题讨论】:

【参考方案1】:

const 是 ES6 javascript 特性。尝试为 Eslint 启用 ES6 语法:


    "parserOptions": 
        "ecmaVersion": 6,
        "sourceType": "module",
    

【讨论】:

在您的项目目录中的.eslintrc.json 中。 eslint.org/docs/user-guide/configuring

以上是关于JSLint 和 ESLint 问题(括号)的主要内容,如果未能解决你的问题,请参考以下文章

eslint 或 jslint 中的 Javascript lambda/匿名函数长度警告

JSLint 错误:“将调用移动到包含函数的括号中”

为啥 JSLint 更喜欢点符号而不是方括号?

JSLint 和使用三元表达式赋值

括号中的 JSLint 表示未定义音频,但不抱怨图像

ESLint