eslint-config-henderea 1.1.0 → 1.1.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.
Files changed (2) hide show
  1. package/.eslintrc.js +13 -6
  2. package/package.json +1 -1
package/.eslintrc.js CHANGED
@@ -27,7 +27,8 @@ module.exports = {
27
27
  'error',
28
28
  'unix'
29
29
  ],
30
- semi: [
30
+ semi: 0,
31
+ '@typescript-eslint/semi': [
31
32
  'error',
32
33
  'always'
33
34
  ],
@@ -48,7 +49,8 @@ module.exports = {
48
49
  'no-underscore-dangle': 0,
49
50
  'consistent-return': 0,
50
51
  radix: 0,
51
- quotes: [
52
+ quotes: 0,
53
+ '@typescript-eslint/quotes': [
52
54
  2,
53
55
  'single',
54
56
  {
@@ -66,7 +68,8 @@ module.exports = {
66
68
  'no-trailing-spaces': [
67
69
  'error'
68
70
  ],
69
- 'space-before-function-paren': [
71
+ 'space-before-function-paren': 0,
72
+ '@typescript-eslint/space-before-function-paren': [
70
73
  'error',
71
74
  {
72
75
  anonymous: 'never',
@@ -74,7 +77,8 @@ module.exports = {
74
77
  asyncArrow: 'always'
75
78
  }
76
79
  ],
77
- 'keyword-spacing': [
80
+ 'keyword-spacing': 0,
81
+ '@typescript-eslint/keyword-spacing': [
78
82
  'error',
79
83
  {
80
84
  overrides: {
@@ -93,7 +97,8 @@ module.exports = {
93
97
  }
94
98
  }
95
99
  ],
96
- 'object-curly-spacing': [
100
+ 'object-curly-spacing': 0,
101
+ '@typescript-eslint/object-curly-spacing': [
97
102
  'error',
98
103
  'always'
99
104
  ],
@@ -102,6 +107,8 @@ module.exports = {
102
107
  'always'
103
108
  ],
104
109
  'no-constant-condition': 0,
105
- '@typescript-eslint/no-var-requires': 0
110
+ '@typescript-eslint/no-var-requires': 0,
111
+ '@typescript-eslint/no-explicit-any': 0,
112
+ '@typescript-eslint/ban-ts-comment': 0
106
113
  }
107
114
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-henderea",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "ESLint Config used by henderea",
5
5
  "main": "index.js",
6
6
  "author": "henderea",