Skip to content

Commit

Permalink
final touchup
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-zhang-at-salesforce committed May 22, 2024
1 parent 1deffcd commit 07b6b87
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"url": "https://github.com/salesforce/eslint-plugin-lwc-mobile"
},
"scripts": {
"build": "tsc",
"build": "tsc --build --force",
"format": "prettier --list-different \"**/*.{ts,js}\"",
"format:fix": "prettier --write \"**/*.{ts,js,json}\"",
"lint": "eslint src test",
Expand Down
4 changes: 2 additions & 2 deletions src/configs/recommended.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import type { ClassicConfig } from '@typescript-eslint/utils/ts-eslint';
import { APEX_IMPORT_RULE_ID } from '../rules/apex/apex-import.js';
import { NO_MUTATION_SUPPORTED_RULE_ID } from '../rules/graphql/no-mutation-supported';
import { NO_AGGREGATE_QUERY_SUPPORTED_RULE_ID } from '../rules/graphql/no-aggregate-query-supported';
import { NO_SEMI_JOIN_SUPPORTED_MESSAGE_ID } from '../rules/graphql/no-semi-anti-join-supported';
import { NO_SEMI_ANTI_JOIN_SUPPORTED_RULE_ID } from '../rules/graphql/no-semi-anti-join-supported';
import { createFullRuleName } from '../util/createFullRuleName';

export = {
Expand All @@ -29,7 +29,7 @@ export = {
[createFullRuleName(APEX_IMPORT_RULE_ID)]: 'warn',
[createFullRuleName(NO_MUTATION_SUPPORTED_RULE_ID)]: 'warn',
[createFullRuleName(NO_AGGREGATE_QUERY_SUPPORTED_RULE_ID)]: 'warn',
[createFullRuleName(NO_SEMI_JOIN_SUPPORTED_MESSAGE_ID)]: 'warn'
[createFullRuleName(NO_SEMI_ANTI_JOIN_SUPPORTED_RULE_ID)]: 'warn'
}
}
]
Expand Down

0 comments on commit 07b6b87

Please sign in to comment.