bito-code-review[bot] commented on code in PR #41871: URL: https://github.com/apache/superset/pull/41871#discussion_r3540738376
########## .rat-excludes: ########## @@ -7,6 +7,8 @@ .codecov.yml .eslintrc .eslintignore +.stylelintrc.json +.stylelintignore Review Comment: <!-- Bito Reply --> The suggestion is correct regarding the path matching behavior of the file. Since the patterns in this file are applied as simple matches rather than full paths, adding the root-level filenames will not correctly exclude the files located within the subdirectory. You should update the entries to include the subdirectory prefix to ensure they are properly excluded. **.rat-excludes** ``` +superset-frontend/.stylelintrc.json +superset-frontend/.stylelintignore ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
