@enigmatry/eslint-config 15.1.0-preview.3 → 15.1.0-preview.5

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 +5 -18
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -97,7 +97,7 @@ module.exports = {
97
97
  "@stylistic/max-len": [
98
98
  "error",
99
99
  {
100
- "code": 120,
100
+ "code": 150,
101
101
  "ignoreComments": true
102
102
  }
103
103
  ],
@@ -161,7 +161,7 @@ module.exports = {
161
161
  "@stylistic/space-in-parens": "error",
162
162
  "@stylistic/space-infix-ops": "off",
163
163
  "@stylistic/space-unary-ops": "error",
164
- "@stylistic/spaced-comment": "error",
164
+ "@stylistic/spaced-comment": "off",
165
165
  "@stylistic/switch-colon-spacing": "error",
166
166
  "@stylistic/template-curly-spacing": "error",
167
167
  "@stylistic/template-tag-spacing": "error",
@@ -229,13 +229,6 @@ module.exports = {
229
229
  "@typescript-eslint/keyword-spacing": [
230
230
  "error"
231
231
  ],
232
- "@typescript-eslint/lines-between-class-members": [
233
- "error",
234
- "always",
235
- {
236
- "exceptAfterSingleLine": true
237
- }
238
- ],
239
232
  "@typescript-eslint/naming-convention": "off",
240
233
  "@typescript-eslint/no-array-constructor": [
241
234
  "error"
@@ -362,16 +355,10 @@ module.exports = {
362
355
  "error"
363
356
  ],
364
357
  "array-callback-return": "error",
365
- "arrow-body-style": [
366
- "error",
367
- "as-needed",
368
- {
369
- "requireReturnForObjectLiteral": true
370
- }
371
- ],
358
+ "arrow-body-style": "off",
372
359
  "block-scoped-var": "error",
373
360
  "camelcase": "warn",
374
- "capitalized-comments": "error",
361
+ "capitalized-comments": "off",
375
362
  "class-methods-use-this": "off",
376
363
  "complexity": "error",
377
364
  "consistent-return": "error",
@@ -625,7 +612,7 @@ module.exports = {
625
612
  "no-lone-blocks": "error",
626
613
  "no-lonely-if": "error",
627
614
  "no-loop-func": "off",
628
- "no-loops/no-loops": 2,
615
+ "no-loops/no-loops": 0,
629
616
  "no-loss-of-precision": "off",
630
617
  "no-magic-numbers": "off",
631
618
  "no-misleading-character-class": "error",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@enigmatry/eslint-config",
3
- "version": "15.1.0-preview.3",
3
+ "version": "15.1.0-preview.5",
4
4
  "author": "Enigmatry",
5
5
  "description": "ESLint shareable config for the Enigmatry style.",
6
6
  "homepage": "https://github.com/enigmatry/entry-angular-building-blocks/tree/master/libs/eslint-config#readme",