A minimal version of code I found in the wild that seems to cause problems for `fixed_regex_linter()`: ``` r strsplit("a/b", "\\/") #> [[1]] #> [1] "a" "b" library(lintr) lint( text = 'strsplit("a/b", "\\/")', linters = fixed_regex_linter() ) #> <text>:1:18: error: [error] '\/' is an unrecognized escape in character string starting ""\/" #> strsplit("a/b", "\/") #> ^ ``` <sup>Created on 2022-12-13 with [reprex v2.0.2](https://reprex.tidyverse.org)</sup>