@mikey-pro/eslint-config 8.0.8 → 8.0.9

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.
Files changed (2) hide show
  1. package/package.json +1 -3
  2. package/rules.js +0 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mikey-pro/eslint-config",
3
- "version": "8.0.8",
3
+ "version": "8.0.9",
4
4
  "description": "Mikey Pro ESLint configuration",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -46,12 +46,10 @@
46
46
  "eslint-plugin-sonarjs": "^3.0.1",
47
47
  "eslint-plugin-regexp": "^2.7.0",
48
48
  "eslint-plugin-etc": "^2.0.3",
49
- "eslint-plugin-functional": "^8.0.0",
50
49
  "eslint-plugin-typescript-sort-keys": "^3.3.0",
51
50
  "eslint-plugin-sort-destructure-keys": "^2.0.0",
52
51
  "eslint-plugin-write-good-comments": "^0.2.0",
53
52
  "eslint-plugin-boundaries": "^5.0.1",
54
- "eslint-plugin-immutable": "^1.0.0",
55
53
  "eslint-plugin-radar": "^0.2.1",
56
54
  "eslint-plugin-optimize-regex": "^1.2.1"
57
55
  },
package/rules.js CHANGED
@@ -233,11 +233,6 @@ export const baseRules = {
233
233
  'security/detect-child-process': 'warn',
234
234
  'security/detect-disable-mustache-escape': 'error',
235
235
 
236
- // Functional Programming
237
- 'functional/no-let': 'warn',
238
- 'functional/prefer-readonly-type': 'warn',
239
- 'functional/no-mixed-type': 'warn',
240
-
241
236
  // Code Organization
242
237
  'typescript-sort-keys/interface': 'warn',
243
238
  'typescript-sort-keys/string-enum': 'warn',
@@ -271,10 +266,6 @@ export const baseRules = {
271
266
  }
272
267
  ],
273
268
 
274
- // Immutability
275
- 'immutable/no-mutation': 'warn',
276
- 'immutable/no-let': 'warn',
277
-
278
269
  // Performance
279
270
  'optimize-regex/optimize-regex': 'warn',
280
271
  'radar/no-duplicate-string': ['warn', 5],