multiple eslint configuration formats #7534
Unanswered
Spoutnik97
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am working to implement this no-restricted-imports rule.
I have several problems:
The eslint config can be: "fs", ["fs"], or {paths: [{name: "fs"}]}. But Rust needs only one type. I don't know how to do this in rust.
Is it ok to cover only the
{paths: [{name: "fs"}]}
case ?from_configuration
method?Here is what I have done:
But here is my result:
Note the "None" values
Beta Was this translation helpful? Give feedback.
All reactions