<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Week-3 &#8211; CS@Worcester</title>
	<atom:link href="https://cs.worcester.edu/tag/week-3/feed/" rel="self" type="application/rss+xml" />
	<link>https://cs.worcester.edu</link>
	<description>Worcester State University Computer Science Department</description>
	<lastBuildDate>Tue, 09 Dec 2025 02:55:42 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9</generator>
<site xmlns="com-wordpress:feed-additions:1">236835116</site>	<item>
		<title>What is Linting</title>
		<link>https://christysblog9.wordpress.com/2025/12/08/what-is-linting/</link>
		
		<dc:creator><![CDATA[Christiana Serwaah]]></dc:creator>
		<pubDate>Tue, 09 Dec 2025 02:55:42 +0000</pubDate>
				<category><![CDATA[CS-348]]></category>
		<category><![CDATA[CS@Worcester]]></category>
		<category><![CDATA[Software Process Management]]></category>
		<category><![CDATA[Week 3]]></category>
		<category><![CDATA[Week-3]]></category>
		<guid isPermaLink="false">http://christysblog9.wordpress.com/?p=38</guid>

					<description><![CDATA[A quick overview of linters Source: https://www.perforce.com/blog/qac/what-is-linting Recently, in class, we did an activity on creating a lint script. The activity honestly confused me a little bit out of the many questions I had about it. One of the questions I wanted to explore is more about what linters do and why we use them. […]]]></description>
										<content:encoded><![CDATA[<p>A quick overview of linters</p>
<div class="taxonomy-post_tag wp-block-post-terms"><a href="https://christysblog9.wordpress.com/tag/cs-348/" rel="tag">CS-348</a><span class="wp-block-post-terms__separator">, </span><a href="https://christysblog9.wordpress.com/tag/csworcester/" rel="tag">CS@Worcester</a><span class="wp-block-post-terms__separator">, </span><a href="https://christysblog9.wordpress.com/tag/week-3/" rel="tag">Week-3</a></div>
<p>Source: <a href="https://www.perforce.com/blog/qac/what-is-linting">https://www.perforce.com/blog/qac/what-is-linting</a></p>
<figure class="wp-block-image size-large"><img data-recalc-dims="1" fetchpriority="high" decoding="async" width="625" height="625" data-attachment-id="48" data-permalink="https://christysblog9.wordpress.com/2025/12/08/what-is-linting/chatgpt-image-dec-8-2025-09_55_18-pm/" data-orig-file="https://christysblog9.wordpress.com/wp-content/uploads/2025/12/chatgpt-image-dec-8-2025-09_55_18-pm.png" data-orig-size="1024,1024" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="ChatGPT Image Dec 8, 2025, 09_55_18 PM" data-image-description="" data-image-caption="" data-medium-file="https://christysblog9.wordpress.com/wp-content/uploads/2025/12/chatgpt-image-dec-8-2025-09_55_18-pm.png?w=300" data-large-file="https://christysblog9.wordpress.com/wp-content/uploads/2025/12/chatgpt-image-dec-8-2025-09_55_18-pm.png?w=1024" src="https://i0.wp.com/christysblog9.wordpress.com/wp-content/uploads/2025/12/chatgpt-image-dec-8-2025-09_55_18-pm.png?resize=625%2C625&#038;ssl=1" alt="" class="wp-image-48" srcset="https://christysblog9.wordpress.com/wp-content/uploads/2025/12/chatgpt-image-dec-8-2025-09_55_18-pm.png 1024w, https://christysblog9.wordpress.com/wp-content/uploads/2025/12/chatgpt-image-dec-8-2025-09_55_18-pm.png?w=150 150w, https://christysblog9.wordpress.com/wp-content/uploads/2025/12/chatgpt-image-dec-8-2025-09_55_18-pm.png?w=300 300w, https://christysblog9.wordpress.com/wp-content/uploads/2025/12/chatgpt-image-dec-8-2025-09_55_18-pm.png?w=768 768w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>
</p>
<p>Recently, in class, we did an activity on creating a lint script. The activity honestly confused me a little bit out of the many questions I had about it. One of the questions I wanted to explore is more about what linters do and why we use them. The activity gives a brief description of what linters are and their purpose.</p>
<p>According to the activity, Linters are tools that check the formatting and style of code and files in projects. Some extensions, like the one used earlier in the activity, markdownlint, can perform some of this checking, but not all tools are available as extensions. I would like to understand them a bit more, so I chose a source that went into extensive detail about what linting is and linters.</p>
<p>It scans the code for things that don’t necessarily prevent the code from running but can cause bigger issues later on, such as small bugs, conflicting formatting, and bad style choices. It can also look for common errors like indexing beyond arrays, dereferencing null pointers, unreachable code, and non-portable constructs.</p>
<p>It&#8217;s better suited for programming languages like Python and JavaScript because they are interpreted languages that don&#8217;t have a compiling phase, so linting helps with keeping up consistency. Linting is more effective in code that follows standard rules and is in projects that need to adhere to shared style guidelines.</p>
<p>Linters are a basic form of static analysis tool, which are any tools that can analyze code without running it. More advanced tools are able to detect:</p>
<ul class="wp-block-list">
<li>Deeper data-flow problems</li>
<li>Runtime risks</li>
<li>Security vulnerabilities</li>
<li>Complex rule violations</li>
<li>Defects across multiple files or modules</li>
</ul>
<p>Linters are a very helpful tool but they do have some limitation that needed to be accounted for when wanting to use it on a project.</p>
<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p>                         Pros</p>
<ul class="wp-block-list">
<li>Catch small issues early</li>
<li>Improve code consistency</li>
<li>Reduce time spent on reviews</li>
<li>Support teamwork and shared standards</li>
<li>Great for beginners who need guidance</li>
<li>Fit well into Agile workflows</li>
</ul>
</div>
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow">
<p>                    Cons</p>
<ul class="wp-block-list">
<li>Can produce many warnings</li>
<li>Sometimes flags harmless code</li>
<li>Cannot detect deep logic problems</li>
<li>Needs to be configured correctly</li>
<li>Can slow you down </li>
</ul>
</div>
</div>
</div>
</div>
<p>Overall, I learned that Linters are one of many analysis tools that can be used in a program, and I also learned one of the ways methodologies like Scrum are able to keep transparency and deal with continuity and consistency issues when dealing with a larger team.</p>
<p>I would like to become more familiar with creating lint scripts, so I can integrate them more into my programs, especially since consistency is something I have issues with, the more I learn about how to code better.</p>

<p class="syndicated-attribution"><em>From the blog <a href="https://christysblog9.wordpress.com">CS@Worcester – A Beginner&amp;#039;s Journey Through Computer Science</a> by <a href="https://cs.worcester.edu/author/0/" title="Read other posts by Christiana Serwaah">Christiana Serwaah</a></em> and used with permission of the author. All other rights reserved by the author.</p>]]></content:encoded>
					
		
		<enclosure url="https://1.gravatar.com/avatar/d6d45b372f0827cbfe4f5f0046652dcf809f3b177a2d563e17961747fdd7eb0d?s=96&#038;d=identicon&#038;r=G" length="0" type="" />
<enclosure url="https://christysblog9.wordpress.com/wp-content/uploads/2025/12/chatgpt-image-dec-8-2025-09_55_18-pm.png?w=1024" length="0" type="" />

		<post-id xmlns="com-wordpress:feed-additions:1">46237</post-id>	</item>
	</channel>
</rss>
