We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Thank you for the plugin!
I'm using corebuild (comes with core package by Jane Street) to build my project. My project structure is:
corebuild
core
hello.ml io.ml
And my hello.ml is:
hello.ml
(* 'Unbound module Core' was fixed by PKG Core *) open Core;; (* Cannot fix 'Unbound module Io' here *) print_endline (Io.get_file_content "input.txt")
Io is auto-imported by corebuild, I do not #use or open it. How can I tell linter that this module is actually exists?
Io
#use
open
I tried PKG Io and B ./ in my .merlin file, but it doesn't help.
PKG Io
B ./
.merlin
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Thank you for the plugin!
I'm using
corebuild
(comes withcore
package by Jane Street) to build my project. My project structure is:And my
hello.ml
is:Io
is auto-imported bycorebuild
, I do not#use
oropen
it. How can I tell linter that this module is actually exists?I tried
PKG Io
andB ./
in my.merlin
file, but it doesn't help.The text was updated successfully, but these errors were encountered: