Skip to content

Commit

Permalink
v1.1.0 - lint JSON
Browse files Browse the repository at this point in the history
  • Loading branch information
Justintime50 committed Jul 12, 2021
1 parent 6a1127f commit 6001771
Show file tree
Hide file tree
Showing 7 changed files with 90 additions and 3,923 deletions.
7 changes: 5 additions & 2 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@ env:
commonjs: true
es6: true
node: true
extends: 'eslint:recommended'
extends: "eslint:recommended"
globals:
Atomics: readonly
SharedArrayBuffer: readonly
parserOptions:
ecmaVersion: 2018
rules: {}
plugins:
- json
rules:
"json/*": "error"
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## v1.1.0 (2021-07-12)

* Adds a JSON linter which has been missing for some time
* Adds fallback output path values to beautify and minify utils
* Small tweaks and bump dev deps

## v1.0.0 (2021-06-27)

* Initial release under new DAD name (where the data is separate from the logic)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ A sample address object will look like the following:
## Development

```bash
# Lint a file
# Lint the project
npm run lint

# Run tests
Expand Down
Loading

0 comments on commit 6001771

Please sign in to comment.