@elementx-ai/eslint-config 6.3.0 → 7.0.1
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 +18 -0
- package/README.md +2 -2
- package/lib/common.js +0 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,24 @@
|
|
|
2
2
|
|
|
3
3
|
This repository adheres to semantic versioning and follows the conventions of [keepachangelog.com](http://keepachangelog.com)
|
|
4
4
|
|
|
5
|
+
## [7.0.1](https://github.com/elementx-ai/eslint-config/compare/v7.0.0...v7.0.1) (2023-04-20)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* Update README.md with company name ([#15](https://github.com/elementx-ai/eslint-config/issues/15)) ([464f5d0](https://github.com/elementx-ai/eslint-config/commit/464f5d0b7bcb37fb7212ef95af8742a789231e0c))
|
|
11
|
+
|
|
12
|
+
## [7.0.0](https://github.com/elementx-ai/eslint-config/compare/v6.3.0...v7.0.0) (2022-11-13)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### ⚠ BREAKING CHANGES
|
|
16
|
+
|
|
17
|
+
* Remove require-await rule, update ts-eslint deps for better decorator support (#11)
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
* Remove require-await rule, update ts-eslint deps for better decorator support ([#11](https://github.com/elementx-ai/eslint-config/issues/11)) ([4c98fed](https://github.com/elementx-ai/eslint-config/commit/4c98fedfd694fa7072e1eea03d145be94e291354))
|
|
22
|
+
|
|
5
23
|
## [6.3.0](https://github.com/elementx-ai/eslint-config/compare/v6.2.0...v6.3.0) (2022-11-11)
|
|
6
24
|
|
|
7
25
|
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# ElementX's Eslint Config
|
|
2
2
|
|
|
3
|
-
This package provides
|
|
3
|
+
This package provides ElementX's .eslintrc.yaml as an extensible [shared config](https://eslint.org/docs/developer-guide/shareable-configs) :sparkles:
|
|
4
4
|
|
|
5
5
|
## Install and Setup
|
|
6
6
|
|
package/lib/common.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elementx-ai/eslint-config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.1",
|
|
4
4
|
"description": "Spark 64's eslint config",
|
|
5
5
|
"license": "Unlicense",
|
|
6
6
|
"repository": {
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
],
|
|
17
17
|
"main": "index.js",
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@typescript-eslint/parser": "^5.
|
|
20
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
19
|
+
"@typescript-eslint/parser": "^5.42.1",
|
|
20
|
+
"@typescript-eslint/eslint-plugin": "^5.42.1",
|
|
21
21
|
"eslint-plugin-import": "^2.26.0",
|
|
22
22
|
"eslint-plugin-prefer-arrow": "^1.2.3"
|
|
23
23
|
},
|