Havoc Pennington

Results 176 comments of Havoc Pennington

I'll work on writing up some specs/discussion-docs.

Both should work afaik. YAML is a json superset, so you can do the full JSON: ``` "packages" : [ "redis-py" ] ``` Or the YAML style: ``` packages: -...

Probably yes, it looks like YAMLError has `exc.problem_mark.line`, `exc.problem_mark.column`, at least sometimes. Docs show a `hasattr(exc, 'problem_mark')` check, I don't know when it doesn't have a mark.

What do you have in mind specifically? Maybe whenever we take a `--directory` option you could specify it relative to that folder? I think it may be almost a 99%...

re: maintenance status, we still strongly rely on the service at Tidelift, so we're planning to keep it running and add features as we have the need. We are a...

@tom-corwin does the PR from Andrew cover the badges you were looking for?

there was a discussion of maintenance recently here https://github.com/lightbend/config/issues/787

Easily I would say no. The Config object is meant to represent a configuration (like keys and values) at runtime, not preserve any formatting or specific file format. The ConfigDocument...

Easily I would say no. The Config object is meant to represent a configuration (like keys and values) at runtime, not preserve any formatting or specific file format. The ConfigDocument...

Is this the same as https://github.com/lightbend/config/issues/332 ? If so there's some discussion on that issue from the last time I looked into it, with the punchline suggesting the same PR...