Skip to content

Commit 8de62be

Browse files
authored
Merge branch 'main' into aeisenberg/category-with-tool
2 parents ab1f709 + b6fbcca commit 8de62be

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

lib/analysis-paths.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/analysis-paths.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/analysis-paths.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ export function printPathFiltersWarning(
2929
config: configUtils.Config,
3030
logger: Logger
3131
) {
32-
// Index include/exclude/filters only work in javascript and python.
32+
// Index include/exclude/filters only work in javascript/python/ruby.
3333
// If any other languages are detected/configured then show a warning.
3434
if (
3535
(config.paths.length !== 0 || config.pathsIgnore.length !== 0) &&
3636
!config.languages.every(isInterpretedLanguage)
3737
) {
3838
logger.warning(
39-
'The "paths"/"paths-ignore" fields of the config only have effect for JavaScript and Python'
39+
'The "paths"/"paths-ignore" fields of the config only have effect for JavaScript, Python, and Ruby'
4040
);
4141
}
4242
}

0 commit comments

Comments
 (0)