Windows 10, Julia 1.6.1, VSCode 1.59.1, Code Ext 1.3.32
I understand that it is not so easy to detect invalid calls in Julia…
But… Is there a some kind “pragma” to locally disable these warning ?
Here the declaration:
struct GitConfig
user_local::String
user_email::String
user_github::String
def_branch::String
GitConfig() = new("","","","")
GitConfig(github::String ; user::String, email::String, branch::String) = new(user, email, github, branch)
end
And the Possible method call error
call below in the same file, same module:
conf = GitConfig(readconfig("github.user");
user = readconfig("user.name"),
email = readconfig("user.email"),
branch = readconfig("init.defaultBranch"))