@dendavidov/eslint-config-react 1.0.1 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +8 -0
  2. package/package.json +7 -2
package/README.md CHANGED
@@ -1,3 +1,9 @@
1
+ [![npm version](https://img.shields.io/npm/v/@dendavidov/eslint-config-react.svg)](https://www.npmjs.com/package/eslint)
2
+ [![Downloads](https://img.shields.io/npm/dm/@dendavidov/eslint-config-react.svg)](https://www.npmjs.com/package/eslint)
3
+ [![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fdendavidov%2Feslint-config-react.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Fdendavidov%2Feslint-config-react?ref=badge_shield)
4
+ [![CodeQL](https://github.com/dendavidov/eslint-config-react/actions/workflows/codeql.yml/badge.svg)](https://github.com/dendavidov/eslint-config-react/actions/workflows/codeql.yml)
5
+ [![checks](https://github.com/dendavidov/eslint-config-react/actions/workflows/test.yml/badge.svg)](https://github.com/dendavidov/eslint-config-react/actions/workflows/test.yml)
6
+
1
7
  # @dendavidov/eslint-config-react
2
8
 
3
9
  Opinionated eslint-config for React.js SPA.
@@ -36,3 +42,5 @@ to discuss what you would like to change.
36
42
  ## License
37
43
 
38
44
  [MIT](https://dendavidov.mit-license.org/)
45
+
46
+ [![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fdendavidov%2Feslint-config-react.svg?type=large)](https://app.fossa.com/projects/git%2Bgithub.com%2Fdendavidov%2Feslint-config-react?ref=badge_large)
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@dendavidov/eslint-config-react",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "eslint config",
5
5
  "main": "src/index.js",
6
6
  "license": "MIT",
7
7
  "scripts": {
8
8
  "test": "jest --watchAll=false",
9
- "release": "npx semantic-release"
9
+ "release": "npx semantic-release",
10
+ "prepare": "npx husky install"
10
11
  },
11
12
  "author": "Denis Davydov mail@dendavidov.com",
12
13
  "repository": {
@@ -26,7 +27,11 @@
26
27
  "src/index.js"
27
28
  ],
28
29
  "devDependencies": {
30
+ "@commitlint/cli": "^17.4.4",
31
+ "@commitlint/config-conventional": "^17.4.4",
29
32
  "@semantic-release/git": "^10.0.1",
33
+ "conventional-changelog-conventionalcommits": "^5.0.0",
34
+ "husky": "^8.0.3",
30
35
  "jest": "^29.4.3",
31
36
  "prettier": "^2.8.4"
32
37
  },