@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 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
- # Spark 64's Eslint Config
1
+ # ElementX's Eslint Config
2
2
 
3
- This package provides Spark 64's .eslintrc.yaml as an extensible [shared config](https://eslint.org/docs/developer-guide/shareable-configs) :sparkles:
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
@@ -23,7 +23,6 @@ module.exports = {
23
23
  "import/no-default-export": "error",
24
24
  "arrow-body-style": ["error", "as-needed"],
25
25
  "no-return-await": ["error"],
26
- "require-await": ["error"],
27
26
  "default-case-last": ["error"],
28
27
  "no-console": "off",
29
28
  "linebreak-style": "off",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elementx-ai/eslint-config",
3
- "version": "6.3.0",
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.0.0",
20
- "@typescript-eslint/eslint-plugin": "^5.0.0",
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
  },