mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-16 14:00:13 +01:00
Remove unused/outdated internal parameter.
This commit is contained in:
parent
a94d1bf063
commit
333bb41a1f
1 changed files with 0 additions and 7 deletions
|
|
@ -492,7 +492,6 @@ function getEnabledRulesPerLineNumber(
|
|||
* @param {RegExp | null} frontMatter Regular expression for front matter.
|
||||
* @param {boolean} handleRuleFailures Whether to handle exceptions in rules.
|
||||
* @param {boolean} noInlineConfig Whether to allow inline configuration.
|
||||
* @param {number} resultVersion Version of the LintResults object to return.
|
||||
* @param {boolean} synchronous Whether to execute synchronously.
|
||||
* @param {LintContentCallback} callback Callback (err, result) function.
|
||||
* @returns {void}
|
||||
|
|
@ -508,7 +507,6 @@ function lintContent(
|
|||
frontMatter,
|
||||
handleRuleFailures,
|
||||
noInlineConfig,
|
||||
resultVersion,
|
||||
synchronous,
|
||||
callback) {
|
||||
// Provide a consistent error-reporting callback
|
||||
|
|
@ -791,7 +789,6 @@ function lintContent(
|
|||
* @param {RegExp | null} frontMatter Regular expression for front matter.
|
||||
* @param {boolean} handleRuleFailures Whether to handle exceptions in rules.
|
||||
* @param {boolean} noInlineConfig Whether to allow inline configuration.
|
||||
* @param {number} resultVersion Version of the LintResults object to return.
|
||||
* @param {FsLike} fs File system implementation.
|
||||
* @param {boolean} synchronous Whether to execute synchronously.
|
||||
* @param {LintContentCallback} callback Callback (err, result) function.
|
||||
|
|
@ -807,7 +804,6 @@ function lintFile(
|
|||
frontMatter,
|
||||
handleRuleFailures,
|
||||
noInlineConfig,
|
||||
resultVersion,
|
||||
fs,
|
||||
synchronous,
|
||||
callback) {
|
||||
|
|
@ -827,7 +823,6 @@ function lintFile(
|
|||
frontMatter,
|
||||
handleRuleFailures,
|
||||
noInlineConfig,
|
||||
resultVersion,
|
||||
synchronous,
|
||||
callback
|
||||
);
|
||||
|
|
@ -935,7 +930,6 @@ function lintInput(options, synchronous, callback) {
|
|||
frontMatter,
|
||||
handleRuleFailures,
|
||||
noInlineConfig,
|
||||
resultVersion,
|
||||
fs,
|
||||
synchronous,
|
||||
lintWorkerCallback
|
||||
|
|
@ -954,7 +948,6 @@ function lintInput(options, synchronous, callback) {
|
|||
frontMatter,
|
||||
handleRuleFailures,
|
||||
noInlineConfig,
|
||||
resultVersion,
|
||||
synchronous,
|
||||
lintWorkerCallback
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue