bughelp wanted
描述
I use neomake (vim plugin) which creates temporary files for "on the fly linking", for a normal file
src/foo/Bar.test.js
you get
src/foo/.Bar.test.js@neomake_123_2.js
I have "no-extraneous-dependencies" rule enabled like in your example (just with more paths):
"import/no-extraneous-dependencies": ["error", {"devDependencies": ["**/*.test.js", "**/*.spec.js"]}]
How do you specify that files like "**/.*.test.js" are also ok to use dev dependencies?
I tried:
**/.*.test.jsdoesn't exclude the files**/\.*.test.jstriggers an error in eslint config parser**/\\.*.test.jsdoesn't exclude the files