mirror of
https://github.com/nodejs/node.git
synced 2024-11-30 15:30:56 +01:00
2981f24f92
Update ESLint to v3.8.0. * Installed with `npm install --production` to avoid installing unnecessary dev files * Used `dmn -f clean` to further eliminate unneeded files PR-URL: https://github.com/nodejs/node/pull/9112 Reviewed-By: Teddy Katz <teddy.katz@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
224 lines
6.1 KiB
JavaScript
224 lines
6.1 KiB
JavaScript
/**
|
|
* @fileoverview Options configuration for optionator.
|
|
* @author George Zahariev
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Requirements
|
|
//------------------------------------------------------------------------------
|
|
|
|
const optionator = require("optionator");
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Initialization and Public Interface
|
|
//------------------------------------------------------------------------------
|
|
|
|
// exports "parse(args)", "generateHelp()", and "generateHelpForOption(optionName)"
|
|
module.exports = optionator({
|
|
prepend: "eslint [options] file.js [file.js] [dir]",
|
|
defaults: {
|
|
concatRepeatedArrays: true,
|
|
mergeRepeatedObjects: true
|
|
},
|
|
options: [
|
|
{
|
|
heading: "Basic configuration"
|
|
},
|
|
{
|
|
option: "config",
|
|
alias: "c",
|
|
type: "path::String",
|
|
description: "Use configuration from this file or shareable config"
|
|
},
|
|
{
|
|
option: "eslintrc",
|
|
type: "Boolean",
|
|
default: "true",
|
|
description: "Disable use of configuration from .eslintrc"
|
|
},
|
|
{
|
|
option: "env",
|
|
type: "[String]",
|
|
description: "Specify environments"
|
|
},
|
|
{
|
|
option: "ext",
|
|
type: "[String]",
|
|
default: ".js",
|
|
description: "Specify JavaScript file extensions"
|
|
},
|
|
{
|
|
option: "global",
|
|
type: "[String]",
|
|
description: "Define global variables"
|
|
},
|
|
{
|
|
option: "parser",
|
|
type: "String",
|
|
description: "Specify the parser to be used"
|
|
},
|
|
{
|
|
option: "parser-options",
|
|
type: "Object",
|
|
description: "Specify parser options"
|
|
},
|
|
{
|
|
heading: "Caching"
|
|
},
|
|
{
|
|
option: "cache",
|
|
type: "Boolean",
|
|
default: "false",
|
|
description: "Only check changed files"
|
|
},
|
|
{
|
|
option: "cache-file",
|
|
type: "path::String",
|
|
default: ".eslintcache",
|
|
description: "Path to the cache file. Deprecated: use --cache-location"
|
|
},
|
|
{
|
|
option: "cache-location",
|
|
type: "path::String",
|
|
description: "Path to the cache file or directory"
|
|
},
|
|
{
|
|
heading: "Specifying rules and plugins"
|
|
},
|
|
{
|
|
option: "rulesdir",
|
|
type: "[path::String]",
|
|
description: "Use additional rules from this directory"
|
|
},
|
|
{
|
|
option: "plugin",
|
|
type: "[String]",
|
|
description: "Specify plugins"
|
|
},
|
|
{
|
|
option: "rule",
|
|
type: "Object",
|
|
description: "Specify rules"
|
|
},
|
|
{
|
|
heading: "Ignoring files"
|
|
},
|
|
{
|
|
option: "ignore-path",
|
|
type: "path::String",
|
|
description: "Specify path of ignore file"
|
|
},
|
|
{
|
|
option: "ignore",
|
|
type: "Boolean",
|
|
default: "true",
|
|
description: "Disable use of ignore files and patterns"
|
|
},
|
|
{
|
|
option: "ignore-pattern",
|
|
type: "[String]",
|
|
description: "Pattern of files to ignore (in addition to those in .eslintignore)",
|
|
concatRepeatedArrays: [true, {
|
|
oneValuePerFlag: true
|
|
}]
|
|
},
|
|
{
|
|
heading: "Using stdin"
|
|
},
|
|
{
|
|
option: "stdin",
|
|
type: "Boolean",
|
|
default: "false",
|
|
description: "Lint code provided on <STDIN>"
|
|
},
|
|
{
|
|
option: "stdin-filename",
|
|
type: "String",
|
|
description: "Specify filename to process STDIN as"
|
|
},
|
|
{
|
|
heading: "Handling warnings"
|
|
},
|
|
{
|
|
option: "quiet",
|
|
type: "Boolean",
|
|
default: "false",
|
|
description: "Report errors only"
|
|
},
|
|
{
|
|
option: "max-warnings",
|
|
type: "Int",
|
|
default: "-1",
|
|
description: "Number of warnings to trigger nonzero exit code"
|
|
},
|
|
{
|
|
heading: "Output"
|
|
},
|
|
{
|
|
option: "output-file",
|
|
alias: "o",
|
|
type: "path::String",
|
|
description: "Specify file to write report to"
|
|
},
|
|
{
|
|
option: "format",
|
|
alias: "f",
|
|
type: "String",
|
|
default: "stylish",
|
|
description: "Use a specific output format"
|
|
},
|
|
{
|
|
option: "color",
|
|
type: "Boolean",
|
|
alias: "no-color",
|
|
description: "Force enabling/disabling of color"
|
|
},
|
|
{
|
|
heading: "Miscellaneous"
|
|
},
|
|
{
|
|
option: "init",
|
|
type: "Boolean",
|
|
default: "false",
|
|
description: "Run config initialization wizard"
|
|
},
|
|
{
|
|
option: "fix",
|
|
type: "Boolean",
|
|
default: false,
|
|
description: "Automatically fix problems"
|
|
},
|
|
{
|
|
option: "debug",
|
|
type: "Boolean",
|
|
default: false,
|
|
description: "Output debugging information"
|
|
},
|
|
{
|
|
option: "help",
|
|
alias: "h",
|
|
type: "Boolean",
|
|
description: "Show help"
|
|
},
|
|
{
|
|
option: "version",
|
|
alias: "v",
|
|
type: "Boolean",
|
|
description: "Output the version number"
|
|
},
|
|
{
|
|
option: "inline-config",
|
|
type: "Boolean",
|
|
default: "true",
|
|
description: "Prevent comments from changing config or rules"
|
|
},
|
|
{
|
|
option: "print-config",
|
|
type: "path::String",
|
|
description: "Print the configuration for the given file"
|
|
}
|
|
]
|
|
});
|