@checkdigit/eslint-plugin 6.6.0-PR.75-e4e7 → 6.6.0-PR.75-aed8

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/src/index.ts CHANGED
@@ -15,6 +15,7 @@ import fetchResponseHeaderGetterTs, {
15
15
  import fetchThen, { ruleId as fetchThenRuleId } from './fixture/fetch-then';
16
16
  import invalidJsonStringify, { ruleId as invalidJsonStringifyRuleId } from './invalid-json-stringify';
17
17
  import noFixture, { ruleId as noFixtureRuleId } from './fixture/no-fixture';
18
+ import noFullResponse, { ruleId as noFullResponseRuleId } from './fixture/no-full-response';
18
19
  import noPromiseInstanceMethod, { ruleId as noPromiseInstanceMethodRuleId } from './no-promise-instance-method';
19
20
  import noServiceWrapper, { ruleId as noServiceWrapperRuleId } from './fixture/no-service-wrapper';
20
21
  import noStatusCode, { ruleId as noStatusCodeRuleId } from './fixture/no-status-code';
@@ -49,6 +50,7 @@ export default {
49
50
  [fetchResponseBodyJsonRuleId]: fetchResponseBodyJson,
50
51
  [fetchResponseHeaderGetterTsRuleId]: fetchResponseHeaderGetterTs,
51
52
  [addUrlDomainRuleId]: addUrlDomain,
53
+ [noFullResponseRuleId]: noFullResponse,
52
54
  },
53
55
  configs: {
54
56
  all: {
@@ -64,14 +66,15 @@ export default {
64
66
  '@checkdigit/no-test-import': 'error',
65
67
  [`@checkdigit/${invalidJsonStringifyRuleId}`]: 'error',
66
68
  [`@checkdigit/${noPromiseInstanceMethodRuleId}`]: 'error',
67
- [`@checkdigit/${noFixtureRuleId}`]: 'error',
68
- [`@checkdigit/${fetchHeaderGetterRuleId}`]: 'error',
69
- [`@checkdigit/${fetchThenRuleId}`]: 'error',
70
- [`@checkdigit/${noServiceWrapperRuleId}`]: 'error',
71
- [`@checkdigit/${noStatusCodeRuleId}`]: 'error',
72
- [`@checkdigit/${fetchResponseBodyJsonRuleId}`]: 'error',
73
- [`@checkdigit/${fetchResponseHeaderGetterTsRuleId}`]: 'error',
74
- [`@checkdigit/${addUrlDomainRuleId}`]: 'error',
69
+ // [`@checkdigit/${noFixtureRuleId}`]: 'error',
70
+ // [`@checkdigit/${fetchHeaderGetterRuleId}`]: 'error',
71
+ // [`@checkdigit/${fetchThenRuleId}`]: 'error',
72
+ // [`@checkdigit/${noServiceWrapperRuleId}`]: 'error',
73
+ // [`@checkdigit/${noStatusCodeRuleId}`]: 'error',
74
+ // [`@checkdigit/${fetchResponseBodyJsonRuleId}`]: 'error',
75
+ // [`@checkdigit/${fetchResponseHeaderGetterTsRuleId}`]: 'error',
76
+ // [`@checkdigit/${addUrlDomainRuleId}`]: 'error',
77
+ // [`@checkdigit/${noFullResponseRuleId}`]: 'error',
75
78
  },
76
79
  },
77
80
  recommended: {