@apolitical/eslint-config 1.0.0-beta.0 → 1.0.0
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.
- package/CHANGELOG.md +3 -3
- package/README.md +30 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,11 +5,11 @@ 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
|
-
|
|
9
8
|
## [1.0.0] - 2022-01-17
|
|
10
9
|
### Changed
|
|
11
|
-
- Dependencies
|
|
12
|
-
- Node.js version
|
|
10
|
+
- Updated Dependencies
|
|
11
|
+
- Upgraded Node.js version
|
|
12
|
+
- Revamped GitLab pipelines
|
|
13
13
|
|
|
14
14
|
## [0.0.1] - 2021-06-29
|
|
15
15
|
### Added
|
package/README.md
CHANGED
|
@@ -1,3 +1,32 @@
|
|
|
1
1
|
# Apolitical Eslint Config
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Apolitical ESLint configuration for Node.js projects (backend)
|
|
4
|
+
|
|
5
|
+
## Requirements
|
|
6
|
+
|
|
7
|
+
Requires the following to run:
|
|
8
|
+
|
|
9
|
+
- [node.js][node] 16.13.2+
|
|
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