@crycode/eslint-config 1.0.1 → 1.1.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/README.md CHANGED
@@ -48,6 +48,14 @@ module.exports = {
48
48
  Placeholder for the next version (at the beginning of the line):
49
49
  ### **WORK IN PROGRESS**
50
50
  -->
51
+ ### 1.1.0 (2023-04-17)
52
+
53
+ * Removed deprecated `private-abstract-*` from member ordering
54
+
55
+ ### 1.0.2 (2022-08-02)
56
+
57
+ * Set format for enum members to PascalCase or UPPER_CASE
58
+
51
59
  ### 1.0.1 (2022-07-28)
52
60
 
53
61
  * Set `allowAny` to `true` for rule [@typescript-eslint/restrict-plus-operands](https://typescript-eslint.io/rules/restrict-plus-operands/)
@@ -60,7 +68,7 @@ module.exports = {
60
68
 
61
69
  MIT License
62
70
 
63
- Copyright (c) 2021-2022 Peter Müller <peter@crycode.de>
71
+ Copyright (c) 2021-2023 Peter Müller <peter@crycode.de>
64
72
 
65
73
  Permission is hereby granted, free of charge, to any person obtaining a copy
66
74
  of this software and associated documentation files (the "Software"), to deal
package/eslint-config.js CHANGED
@@ -140,7 +140,6 @@ module.exports = {
140
140
  // Fields
141
141
  'public-abstract-field',
142
142
  'protected-abstract-field',
143
- 'private-abstract-field',
144
143
 
145
144
  'public-static-field',
146
145
  'protected-static-field',
@@ -186,7 +185,6 @@ module.exports = {
186
185
  'protected-instance-method',
187
186
  'protected-method',
188
187
 
189
- 'private-abstract-method',
190
188
  'private-static-method',
191
189
  //'private-decorated-method',
192
190
  'private-instance-method',
@@ -212,7 +210,7 @@ module.exports = {
212
210
  },
213
211
  {
214
212
  selector: 'enumMember',
215
- format: ['camelCase', 'UPPER_CASE'],
213
+ format: ['PascalCase', 'UPPER_CASE'],
216
214
  },
217
215
  ],
218
216
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crycode/eslint-config",
3
- "version": "1.0.1",
3
+ "version": "1.1.0",
4
4
  "description": "ESLint configuration to be used with TypeScript according to my personal preferences",
5
5
  "main": "eslint-config.js",
6
6
  "scripts": {
@@ -26,8 +26,8 @@
26
26
  "url": "https://github.com/crycode-de/eslint-config.git"
27
27
  },
28
28
  "dependencies": {
29
- "@typescript-eslint/eslint-plugin": "^5.31.0",
30
- "@typescript-eslint/parser": "^5.31.0"
29
+ "@typescript-eslint/eslint-plugin": "^5.58.0",
30
+ "@typescript-eslint/parser": "^5.58.0"
31
31
  },
32
32
  "peerDependencies": {
33
33
  "eslint": "^8.0.0"