From d0e1c8c45f14c6e038c2e22173042a62eb67a621 Mon Sep 17 00:00:00 2001 From: Derek Date: Mon, 3 Nov 2025 13:39:37 -0600 Subject: [PATCH] Updated TypeScript Style Guide (markdown) --- TypeScript-Style-Guide.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/TypeScript-Style-Guide.md b/TypeScript-Style-Guide.md index cfff515..d6a17e6 100644 --- a/TypeScript-Style-Guide.md +++ b/TypeScript-Style-Guide.md @@ -151,7 +151,6 @@ let selectedCourse: Course | null = null; ```typescript // Good const courseList = []; -const activeSchedule = schedules[0]; function getCourseById(id: number) {} async function fetchCourses() {} @@ -167,7 +166,6 @@ function GetCourseById(id: number) {} // Good const MAX_COURSES = 10; const API_URL = 'https://api.example.com'; -const CACHE_TTL = 3600; // Bad const maxCourses = 10; @@ -208,7 +206,7 @@ class Course { ### Import Order -Organize imports in this order: +Imports should automatically be organized through the linter. For reference, organize imports in this order: 1. External libraries 2. Internal absolute imports