You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(tasks/rulegen): trim quotes from filename (#14283)
All rule generation for `vue` would result into testfiles like:
```
Some(PathBuf::from("'test.vue'")),
```
but it should be:
```
Some(PathBuf::from("test.vue")),
```
0 commit comments