Skip to content

Commit 7af668b

Browse files
committed
lint
1 parent 9f1993e commit 7af668b

File tree

3 files changed

+10
-7
lines changed

3 files changed

+10
-7
lines changed

bin/all

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,25 @@
22

33
set -e
44

5-
echo "===> Running Sorbet Typecheck"
5+
echo "===> Running Sorbet"
66
bin/typecheck
77

8-
echo "===> Running TypeScript export"
8+
echo "===> Running LogStruct TypeScript Export"
99
scripts/export_typescript_types.rb
1010

11-
echo "===> Running TypeScript Typecheck"
11+
echo "===> Running TypeScript"
1212
(cd site && npx tsc --noEmit)
1313

14-
echo "===> Running RuboCop (lint)"
14+
echo "===> Running RuboCop"
1515
bin/rubocop
1616

17-
echo "===> Running Prettier (lint)"
17+
echo "===> Running Prettier"
1818
bin/prettier --check
1919

20-
echo "===> Running spellcheck"
20+
echo "===> Running ESLint"
21+
(cd site && npm run lint)
22+
23+
echo "===> Running CSpell Spellcheck"
2124
bin/spellcheck
2225

2326
echo "===> Running Ruby tests"

site/app/docs/configuration/page.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { RubyCodeExample } from '@/components/ruby-code-example';
22
import { EditPageLink } from '@/components/edit-page-link';
3-
import { CodeBlock } from '@/components/code-block';
43

54
export default function ConfigurationPage() {
65
return (

site/app/docs/integrations/page.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import { LogGenerator } from '@/lib/log-generation';
66
import { LogType } from '@/lib/log-generation';
77

88
// Helper to format logs as JSON strings for display
9+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
910
function formatLog(log: Record<string, any>): string {
1011
return JSON.stringify(log, null, 2);
1112
}

0 commit comments

Comments
 (0)