Skip to content

Commit 626066f

Browse files
chore: lint error fix
1 parent 3f5fb49 commit 626066f

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

src/rules/graphql/no-fiscal-date-filtering-supported.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ export const rule: GraphQLESLintRule = {
1616
meta: {
1717
type: 'problem',
1818
docs: {
19-
description: 'Fiscal date literals and ranges are not supported in filters for mobile offline. See Feature Limitations of Offline GraphQL (https://developer.salesforce.com/docs/atlas.en-us.mobile_offline.meta/mobile_offline/use_graphql_limitations.htm) for more details.',
19+
description:
20+
'Fiscal date literals and ranges are not supported in filters for mobile offline. See Feature Limitations of Offline GraphQL (https://developer.salesforce.com/docs/atlas.en-us.mobile_offline.meta/mobile_offline/use_graphql_limitations.htm) for more details.',
2021
category: 'Operations',
2122
recommended: true,
2223
examples: [

src/rules/graphql/no-mutation-supported.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ export const rule: GraphQLESLintRule = {
1717
hasSuggestions: false,
1818
docs: {
1919
category: 'Operations',
20-
description: 'Mutation (data modification) is not supported for mobile offline. See Feature Limitations of Offline GraphQL (https://developer.salesforce.com/docs/atlas.en-us.mobile_offline.meta/mobile_offline/use_graphql_limitations.htm) for more details.',
20+
description:
21+
'Mutation (data modification) is not supported for mobile offline. See Feature Limitations of Offline GraphQL (https://developer.salesforce.com/docs/atlas.en-us.mobile_offline.meta/mobile_offline/use_graphql_limitations.htm) for more details.',
2122
recommended: true,
2223
examples: [
2324
{

src/rules/graphql/no-semi-anti-join-supported.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ export const rule: GraphQLESLintRule = {
1414
type: 'problem',
1515
hasSuggestions: false,
1616
docs: {
17-
description: 'Semi-join and anti-join filters are not supported for mobile offline. See Feature Limitations of Offline GraphQL (https://developer.salesforce.com/docs/atlas.en-us.mobile_offline.meta/mobile_offline/use_graphql_limitations.htm) for more details.',
17+
description:
18+
'Semi-join and anti-join filters are not supported for mobile offline. See Feature Limitations of Offline GraphQL (https://developer.salesforce.com/docs/atlas.en-us.mobile_offline.meta/mobile_offline/use_graphql_limitations.htm) for more details.',
1819
category: 'Operations',
1920
recommended: true,
2021
examples: [

0 commit comments

Comments
 (0)