Skip to content

Commit

Permalink
Version 0.1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
sobolevn committed Dec 18, 2018
1 parent 8e2601a commit a80560d
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ We follow Semantic Versions.

- Fixes how homepage in defined in `pyproject.toml`

### Misc

- Improves docs: adds examples and usage section to the `README.md`
- Changes state: from Alpha to Beta


## Version 0.1.0

Expand Down
30 changes: 29 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,39 @@ Simple linter for `.env` files.
While `.env` files are very simple it is required to keep them consistent.
This tool offers a wide range of consistency rules and best practices.

And it integrates perfectly for any existing workflow.
And it integrates perfectly to any existing workflow.


## Installation

```bash
pip install dotenv-linter
```

See [Usage](https://dotenv-linter.readthedocs.io/en/latest/#usage)
section to get started.


## Examples

There are many things that can go wrong in your `.env` files:

```env
# Next line has leading space which will be removed:
SPACED=
# Equal signs should not be spaced:
KEY = VALUE
# Quotes won't be preserved after parsing, do not use them:
SECRET="my value"
# Beware of duplicates!
SECRET=Already defined ;(
# Respect the convention, use `UPPER_CASE`:
kebab-case-name=1
snake_case_name=2
```

And much more! You can find the [full list of violations in our docs](https://dotenv-linter.readthedocs.io/en/latest/pages/violations/).
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dotenv-linter"
version = "0.1.0"
version = "0.1.1"
description = "Linting dotenv files like a charm!"
authors = [
"sobolevn <[email protected]>"
Expand All @@ -20,7 +20,7 @@ keywords = [
]

classifiers = [
"Development Status :: 3 - Alpha",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
Expand Down

0 comments on commit a80560d

Please sign in to comment.