Traducciones al Español
Estamos traduciendo nuestros guías y tutoriales al Español. Es posible que usted esté viendo una traducción generada automáticamente. Estamos trabajando con traductores profesionales para verificar las traducciones de nuestro sitio web. Este proyecto es un trabajo en curso.
Create a Linode account to try this guide with a $ credit.
This credit will be applied to any valid services used during your first  days.

Static code analysis, also called static program analysis, looks at an application’s source code and issues warnings about potential bugs. This is different from – and complementary to – dynamic analysis, which examines the behavior of a program while it is running. Static code analysis can sometimes find bugs that are overlooked in human code reviews and aren’t caught by a compiler’s grammar and error checking.

This type of code analysis is generally performed by a tool, which may be either a standalone utility or one integrated with another program. It can be a part of your integrated development environment or a compiler. Some static code analysis tools look at code units in isolation and apply rules; others take a more holistic view of the code.

Historically, developers run static code analysis in an exploratory way as part of their local software development workflow. This assists developers when debugging and testing, and before checking their code into source code control.

How Does Static Code Analysis Fit into DevOps and CI/CD?

If you want static code analysis to help you with DevOps and CI/CD, you need to run it in your centralized build process. To do so, define the code analysis rules you care about as severity 1, also known as errors or bugs. Then configure the build server to halt any builds with severity 1 errors. Running static code analysis in the centralized build process guarantees that any checked-in code that is promoted to test, staging, or production environments is tested for common coding errors. Developers should also run the code analysis themselves in their local environment prior to pushing their code through their CI/CD pipeline.

Static Code Analysis Tools

The original static code analysis tool was lint. This tool, introduced in 1978 by Stephen C. Johnson of Bell Labs, found any programming or stylistic errors or bugs within C programs. Johnson wrote lint to help him debug Yacc grammar and deal with portability issues when he ported Unix from a 16-bit machine to a 32-bit machine.

Currently, there are dozens of static code analysis tools. Some are single-programming-language code checkers; others support multiple programming languages. Some of these tools couple code checkers with other functionality, such as calculating cyclomatic complexity and other software metrics. These tools sometimes also perform dependency analysis. One popular JavaScript linter is ESLint. You can also take a look at the GitHub Actions Marketplace to find apps and actions that help you integrate static code analysis into your CI/CD pipeline.

Example of Static Code Analysis with ESLint

Once you have installed ESLint and initialized it in your JavaScript projects root directory, your .eslintrc.{js,yml,json} configuration file contains the configuration line in the example file. This setting enables ESLint to check for an extensive list of common syntax or logic errors found in JavaScript code:

File: .eslintrc.json
1
2
3
{
    "extends": "eslint:recommended"
}

One of the rules that is automatically enabled by the above configuration is the for-direction rule. This logic rule ensures the counter controlling a for loop is incrementing in the “right direction”. For example, a for loop with a stop condition that can never be reached, runs infinitely. While there are occasions when an infinite loop is intended, the convention is to construct such loops as a while loop. More typically, an infinite for loop is a considered a bug.

The following code snippet shows two simple examples of infinite for loops:

1
2
3
4
5
6
7
8
9
//eslint for-direction: "error"

for (var i = 0; i < 10; i--) {
...
}

for (var i = 10; i >= 0; i++) {
...
}

On the other hand, a correct for loop, resembles the following:

1
2
3
for (var i = 0; i < 10; i++) {
...
}

ESLint, like many other static code analysis tools, help you find common errors, like an infinite for loops. This ultimately helps you prevent bugs in your code and maintain clean and consistent code.

This page was originally published on


Your Feedback Is Important

Let us know if this guide was helpful to you.


Join the conversation.
Read other comments or post your own below. Comments must be respectful, constructive, and relevant to the topic of the guide. Do not post external links or advertisements. Before posting, consider if your comment would be better addressed by contacting our Support team or asking on our Community Site.
The Disqus commenting system for Linode Docs requires the acceptance of Functional Cookies, which allow us to analyze site usage so we can measure and improve performance. To view and create comments for this article, please update your Cookie Preferences on this website and refresh this web page. Please note: You must have JavaScript enabled in your browser.