Pull.
J'ai juste update le cutie.js, CONNARD Ah oui, j'ai aussi add le info.js, qui est merdique d'ailleurs
This commit is contained in:
3
node_modules/eslint/lib/services/suppressions-service.js
generated
vendored
3
node_modules/eslint/lib/services/suppressions-service.js
generated
vendored
@@ -221,6 +221,9 @@ class SuppressionsService {
|
||||
}
|
||||
throw new Error(
|
||||
`Failed to parse suppressions file at ${this.filePath}`,
|
||||
{
|
||||
cause: err,
|
||||
},
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
13
node_modules/eslint/lib/services/warning-service.js
generated
vendored
13
node_modules/eslint/lib/services/warning-service.js
generated
vendored
@@ -80,6 +80,19 @@ class WarningService {
|
||||
emitInactiveFlagWarning(flag, message) {
|
||||
this.emitWarning(message, `ESLintInactiveFlag_${flag}`);
|
||||
}
|
||||
|
||||
/**
|
||||
* Emits a warning when a suboptimal concurrency setting is detected.
|
||||
* Currently, this is only used to warn when the net linting ratio is low.
|
||||
* @param {string} notice A notice about how to improve performance.
|
||||
* @returns {void}
|
||||
*/
|
||||
emitPoorConcurrencyWarning(notice) {
|
||||
this.emitWarning(
|
||||
`You may ${notice} to improve performance.`,
|
||||
"ESLintPoorConcurrencyWarning",
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = { WarningService };
|
||||
|
||||
Reference in New Issue
Block a user