From 07b6b87dd8df318d5afc58f8b0e701e989822bb0 Mon Sep 17 00:00:00 2001 From: Ben Zhang Date: Wed, 22 May 2024 15:27:33 -0700 Subject: [PATCH] final touchup --- package.json | 2 +- src/configs/recommended.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index e6f7334..2c8ec83 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/configs/recommended.ts b/src/configs/recommended.ts index 52a20b8..facd23f 100644 --- a/src/configs/recommended.ts +++ b/src/configs/recommended.ts @@ -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 = { @@ -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' } } ]