File tree Expand file tree Collapse file tree 3 files changed +10
-7
lines changed
Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 22
33set -e
44
5- echo " ===> Running Sorbet Typecheck "
5+ echo " ===> Running Sorbet"
66bin/typecheck
77
8- echo " ===> Running TypeScript export "
8+ echo " ===> Running LogStruct TypeScript Export "
99scripts/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"
1515bin/rubocop
1616
17- echo " ===> Running Prettier (lint) "
17+ echo " ===> Running Prettier"
1818bin/prettier --check
1919
20- echo " ===> Running spellcheck"
20+ echo " ===> Running ESLint"
21+ (cd site && npm run lint)
22+
23+ echo " ===> Running CSpell Spellcheck"
2124bin/spellcheck
2225
2326echo " ===> Running Ruby tests"
Original file line number Diff line number Diff line change 11import { RubyCodeExample } from '@/components/ruby-code-example' ;
22import { EditPageLink } from '@/components/edit-page-link' ;
3- import { CodeBlock } from '@/components/code-block' ;
43
54export default function ConfigurationPage ( ) {
65 return (
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import { LogGenerator } from '@/lib/log-generation';
66import { 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
910function formatLog ( log : Record < string , any > ) : string {
1011 return JSON . stringify ( log , null , 2 ) ;
1112}
You can’t perform that action at this time.
0 commit comments