eslint-config-ganintegrity 5.1.0 → 6.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/.eslintrc.json CHANGED
@@ -20,6 +20,16 @@
20
20
  "eqeqeq": ["error", "always"],
21
21
  "no-var": "error",
22
22
  "no-console": "error",
23
+ "comma-dangle": ["error", {
24
+ "arrays": "always-multiline",
25
+ "objects": "always-multiline",
26
+ "imports": "always-multiline",
27
+ "exports": "always-multiline",
28
+ "functions": "never"
29
+ }],
30
+ "sort-imports": ["error", {
31
+ "memberSyntaxSortOrder": ["all", "multiple", "single", "none"]
32
+ }],
23
33
  "dot-notation": "warn",
24
34
  "no-unused-vars": ["error", { "vars": "all", "args": "after-used", "ignoreRestSiblings": true }],
25
35
  "prefer-const": "error",
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ # [6.0.0](https://gitlab.com/ganintegrity/eslint-config-ganintegrity/compare/v5.1.0...v6.0.0) (2023-12-14)
2
+
3
+
4
+ ### Features
5
+
6
+ * add new comma, and import sorting rules ([68ae5b6](https://gitlab.com/ganintegrity/eslint-config-ganintegrity/commit/68ae5b6))
7
+ * add sorting rule ([09fad52](https://gitlab.com/ganintegrity/eslint-config-ganintegrity/commit/09fad52))
8
+ * change rules ([8cc3bec](https://gitlab.com/ganintegrity/eslint-config-ganintegrity/commit/8cc3bec))
9
+
10
+
11
+ ### BREAKING CHANGES
12
+
13
+ * This changes the linting rules so updating to the new version after this will require a corresponding update on the prettier config and running the lint:fix command or eslint --fix . in the repo, otherwise the linting will throw errors.
14
+
1
15
  # [5.1.0](https://gitlab.com/ganintegrity/eslint-config-ganintegrity/compare/v5.0.1...v5.1.0) (2023-04-20)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-ganintegrity",
3
- "version": "5.1.0",
3
+ "version": "6.0.0",
4
4
  "description": "eslint configs with prettier integration",
5
5
  "main": "index.js",
6
6
  "dependencies": {