Ryo Maeda
Ryo Maeda
@jodosha The namespace value I expected for `Validators::UserValidator` class is `"validators.user"`. I updated the detail of this issue.
I don't think it should be supported by plugins. Can't you use this? ```json { "overrides": { "files": ["**/engines/**/properties/*.ts"], "rules": { "filenames-simple/naming-convention": "off" } } } ``` https://eslint.org/docs/latest/use/configure/rules#using-configuration-files-1
> is there a way to use the rule for FOLDERS as well? or only for files? I don't know because `"overrides"` is not my plugin's feature, it's feature of...
1. Each rules (include plugin's rules) of ESLint works with file by file, so we cannot check anything if the directory is empty. 2. Currently, the rule `naming-convention` targets basename...
Thank you for your contribution. However, the behavior caused by this change is not what I want. e.g. I think the extension of `index.d.ts` is `.d.ts`, not `.ts`. I think...