@mikey-pro/eslint-config 4.8.6 → 4.8.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/index.js +4 -4
  2. package/package.json +1 -2
package/index.js CHANGED
@@ -240,7 +240,6 @@ module.exports = {
240
240
  'unicorn',
241
241
  'sonarjs',
242
242
  'only-warn',
243
- 'sort-keys-fix',
244
243
  ],
245
244
  root: true,
246
245
  rules: {
@@ -278,7 +277,6 @@ module.exports = {
278
277
  'no-empty': 1,
279
278
  'no-empty-pattern': 1,
280
279
  'no-extra-bind': 1,
281
- 'no-extra-parens': 1,
282
280
  'no-extra-semi': 1,
283
281
  'no-floating-decimal': 1,
284
282
  'no-iterator': 1,
@@ -397,9 +395,11 @@ module.exports = {
397
395
  'require-atomic-updates': 1,
398
396
  'rest-spread-spacing': 1,
399
397
  semi: 1,
400
- 'sort-keys-fix/sort-keys-fix': 1,
401
398
  'sort-vars': 1,
402
- 'space-before-function-paren': [1, 'always'],
399
+ 'space-before-function-paren': [
400
+ 1,
401
+ { anonymous: 'always', asyncArrow: 'always', named: 'never' },
402
+ ],
403
403
  'space-in-parens': [1, 'never'],
404
404
  'spaced-comment': [
405
405
  1,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mikey-pro/eslint-config",
3
- "version": "4.8.6",
3
+ "version": "4.8.9",
4
4
  "description": "Mikey Pro ESLint configuration",
5
5
  "main": "index.js",
6
6
  "dependencies": {
@@ -28,7 +28,6 @@
28
28
  "eslint-plugin-prettier": "^4.0",
29
29
  "eslint-plugin-promise": "^6.0.0",
30
30
  "eslint-plugin-sonarjs": "^0.12.0",
31
- "eslint-plugin-sort-keys-fix": "^1.1.2",
32
31
  "eslint-plugin-svelte3": "^3.4.1",
33
32
  "eslint-plugin-toml": "^0.3.0",
34
33
  "eslint-plugin-unicorn": "^41.0.0",