Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ See our external products:

# Adding Additional Engines

If you are an internal team looking to add Engine capabilities to Salesforce Code Analyzer, refer to the [ENGINE-TEMPLATE READ.ME](/packages/ENGINE-TEMPLATE/README.md).
If you are an internal team looking to add Engine capabilities to Salesforce Code Analyzer, refer to the [ENGINE-TEMPLATE README.md](/packages/ENGINE-TEMPLATE/README.md).

# Adding New Engine Functionality

Expand Down
3 changes: 3 additions & 0 deletions packages/code-analyzer-engine-api/src/rules.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ export const COMMON_TAGS = {
/** Rules that analyze files that have APEX code */
APEX: "Apex",

/** Rules that analyze files that have CSS code */
CSS: "CSS",

/** Rules that analyze files that have HTML code */
HTML: "HTML",

Expand Down
1 change: 1 addition & 0 deletions packages/code-analyzer-engine-api/test/utils/utils.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import {FixedClock, indent, JavaCommandExecutor, RealClock} from "../../src/utils";

jest.setTimeout(30_000);

describe('Tests for Clock', () => {
const fixedClock: FixedClock = new FixedClock(new Date(2025, 2, 21, 12, 30, 25, 20));
Expand Down
Loading