# Quote-surrounded job names
This [[Anti-Pattern|anti-pattern]] appears because it is possible to have [[Job]] names surrounded by quotes. Even if it is a valid `yml` syntax,, it maim the [[readability]] during code-review since [[IDE - Integrated Development Environment|IDE]], [[IDE - Integrated Development Environment#IDE for the Web|web-IDE]] (including [[GitLab]] code-review UI) and code editors may displays the name in a different color. Because of this, [[Job]] names may not have a coherent look, leading to confusion when looking at the configuration.
```yml
# Don't
"build job":
stage: build
script:
- echo "Hello, $GITLAB_USER_LOGIN!"
# Do
build job:
stage: build
script:
- echo "Hello, $GITLAB_USER_LOGIN!"
# Or
build-job:
stage: build
script:
- echo "Hello, $GITLAB_USER_LOGIN!"
```
---
Bibliography:
- [Title - website.com](need bibliography)