Linting - CI/CD用語集の定義
Linting は静的チェッカーを実行し、コードが merge される前にエラーやスタイルの問題を指摘します。
Linting とは、プログラミングのエラー、バグ、スタイルの問題、疑わしい構文を指摘する自動の静的チェックです。linter は CI で高速に実行され、一貫したエラーのないコードを強制します。
CI での linting
すべての pull request で linter を必須チェックとして実行すると、スタイルが一貫し、人手をかけずによくある間違いを捕捉できます。高速な linter は数秒でフィードバックを返します。
関連ガイド
Formatting - CI/CD Glossary DefinitionFormatting: Formatting is the automated application of a consistent code style (indentation, spacing, line br…
Static Analysis - CI/CD Glossary DefinitionStatic Analysis: Static analysis examines source code without running it, detecting bugs, security issues, an…
Pre-Commit Hook - CI/CD Glossary DefinitionPre-Commit Hook: A pre-commit hook is a script Git runs before a commit is recorded. It can lint, format, or…