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
For a simple build_def like this:
def simple_function(name:str, version:str): return build_rule( name = name, binary = True, cmd = "touch $OUT && cat 'hello' > $OUT", outs = ["simple"], )
Please language server will fail with:
10:42:32.079 WARNING: Error from handler for textDocument/formatting: .build_defs/proto/simple.build_defs:1:26: syntax error near : [Error - 10:42:32 AM] Request textDocument/formatting failed. Message: .build_defs/proto/simple.build_defs:1:26: syntax error near : Code: -32603
It works fine if I don't type hint arguments like def simple_function(name, version):
def simple_function(name, version):
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For a simple build_def like this:
Please language server will fail with:
It works fine if I don't type hint arguments like
def simple_function(name, version):
The text was updated successfully, but these errors were encountered: