Introduce bot for typos

Review Request #14817 — Created Feb. 12, 2026 and updated

Information

ReviewBot
master

Reviewers

Introduce bot for typos

Add two files with typos and saw that the exclude file had no issues from the bot. The other files got issues.

Summary ID
Introduce bot for typos
14c207aae8dea63a9fe7cdedcf1c72170979f6f8
Description From Last Updated

If someone has an exclude for something like this with an explicity subdirectory the excludes won't work because ReviewBot uses …

miserymisery

line too long (101 > 79 characters) Column: 80 Error code: E501

reviewbotreviewbot
Checks run (1 failed, 1 succeeded)
flake8 failed.
JSHint passed.

flake8

misery
misery
misery
misery
misery
misery
misery
Review request changed
Commits:
Summary ID
Introduce bot for typos
2af52f04b920da02f825828f8017473751b1f759
Introduce bot for typos
14c207aae8dea63a9fe7cdedcf1c72170979f6f8

Checks run (2 succeeded)

flake8 passed.
JSHint passed.
misery
  1. 
      
  2. Show all issues

    If someone has an exclude for something like this with an explicity subdirectory the excludes won't work because ReviewBot uses another "root directory".
    Is this something that could be changed in ReviewBot? It is quite annoying to change excludes because for temporary directories of the bot.

    [files]
    extend-exclude = [
        "src/external/**",
    ]
    

    This is a work-around:

    [files]
    extend-exclude = [
        "*/src/external/**",
    ]
    
    1. Well, the work-around isn't working good.....

  3.