mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
e8a7003e94
Update ESLint to 3.0.0. This includes an enhancement to `no-unused-vars` such that it finds a few instances in our code base that it did not find previously (fixed in previous commits readying this for landing). PR-URL: https://github.com/nodejs/node/pull/7601 Reviewed-By: Michaël Zasso <mic.besace@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
30 lines
618 B
JavaScript
30 lines
618 B
JavaScript
/**
|
|
* @fileoverview Default CLIEngineOptions.
|
|
* @author Ian VanSchooten
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
module.exports = {
|
|
configFile: null,
|
|
baseConfig: false,
|
|
rulePaths: [],
|
|
useEslintrc: true,
|
|
envs: [],
|
|
globals: [],
|
|
rules: {},
|
|
extensions: [".js"],
|
|
ignore: true,
|
|
ignorePath: null,
|
|
parser: "", // must be empty
|
|
cache: false,
|
|
|
|
// in order to honor the cacheFile option if specified
|
|
// this option should not have a default value otherwise
|
|
// it will always be used
|
|
cacheLocation: "",
|
|
cacheFile: ".eslintcache",
|
|
fix: false,
|
|
allowInlineConfig: true
|
|
};
|