@apolitical/eslint-config 1.0.0-beta.0 → 1.0.2

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 (3) hide show
  1. package/CHANGELOG.md +10 -2
  2. package/README.md +30 -1
  3. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -5,11 +5,19 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.0.2] - 2022-01-31
9
+ ### Fixed
10
+ - Node.js version
11
+
12
+ ## [1.0.1] - 2022-01-20
13
+ ### Fixed
14
+ - Pipeline node version
8
15
 
9
16
  ## [1.0.0] - 2022-01-17
10
17
  ### Changed
11
- - Dependencies
12
- - Node.js version
18
+ - Updated Dependencies
19
+ - Upgraded Node.js version
20
+ - Revamped GitLab pipelines
13
21
 
14
22
  ## [0.0.1] - 2021-06-29
15
23
  ### Added
package/README.md CHANGED
@@ -1,3 +1,32 @@
1
1
  # Apolitical Eslint Config
2
2
 
3
- A node module for our code style
3
+ Apolitical ESLint configurations for Node projects
4
+
5
+ ## Requirements
6
+
7
+ Requires the following to run:
8
+
9
+ - [node.js][node] 16.13.0+
10
+ - [yarn][yarn]
11
+
12
+ [node]: https://nodejs.org/en/download/
13
+ [yarn]: https://classic.yarnpkg.com/en/docs/install
14
+
15
+ ## Installation
16
+
17
+ Install with `yarn`:
18
+
19
+ ```sh
20
+ yarn add -D @apolitical/eslint-config
21
+ ```
22
+
23
+ ## Usage
24
+
25
+ Link the ESLint configurations from your `package.json`:
26
+
27
+ ```json
28
+ "eslintConfig": {
29
+ "extends": "@apolitical/eslint-config/base.config"
30
+ },
31
+ "prettier": "@apolitical/eslint-config/prettier.config",
32
+ ```
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@apolitical/eslint-config",
3
- "version": "1.0.0-beta.0",
4
- "description": "Apolitical ESLint configuration for Node.js projects (backend)",
3
+ "version": "1.0.2",
4
+ "description": "Apolitical ESLint configurations for Node projects",
5
5
  "author": "Apolitical Group Limited <engineering@apolitical.co>",
6
6
  "license": "MIT",
7
7
  "main": "base.config.js",
@@ -22,20 +22,20 @@
22
22
  "Node Modules"
23
23
  ],
24
24
  "dependencies": {
25
- "eslint": "8.7.0",
25
+ "eslint": "8.8.0",
26
26
  "eslint-config-prettier": "8.3.0",
27
- "eslint-plugin-jest": "25.7.0",
27
+ "eslint-plugin-jest": "26.0.0",
28
28
  "eslint-plugin-prettier": "4.0.0",
29
29
  "prettier": "2.5.1"
30
30
  },
31
31
  "peerDependencies": {
32
- "eslint": "8.7.0",
32
+ "eslint": "8.8.0",
33
33
  "eslint-config-prettier": "8.3.0",
34
- "eslint-plugin-jest": "25.7.0",
34
+ "eslint-plugin-jest": "26.0.0",
35
35
  "eslint-plugin-prettier": "4.0.0",
36
36
  "prettier": "2.5.1"
37
37
  },
38
38
  "engines": {
39
- "node": ">=16.13.2"
39
+ "node": ">=16.13.0"
40
40
  }
41
41
  }