The error is shown in VS Code from the linter.
Additional properties are not allowed ('ellar' was unexpected)Even Better TOML

The file is parseable:
In [1]: from tomlkit import parse
In [2]: foo="""
...: [ellar]
...: default = "new_project"
...: """
In [3]: parse(foo)
Out[3]: {'ellar': {'default': 'new_project'}}
but trying with validate-pyproject the error again.
$ validate-pyproject pyproject.toml
Invalid file: pyproject.toml
[ERROR] `data` must not contain {'ellar'} properties
Not sure if it's a real problem, though ellar-cli relies on this nomenclature in pyproject.toml to handle the multi-project if I'm not mistaken.
The error is shown in VS Code from the linter.
The file is parseable:
but trying with validate-pyproject the error again.
Not sure if it's a real problem, though
ellar-clirelies on this nomenclature inpyproject.tomlto handle the multi-project if I'm not mistaken.