expertanalytics / expertanalytics/cvcreator
Do not sort skills alphabetically
- Dominant language
- Python
- Stars
- 7
- Forks
- 0
- Avg merge
- 7h 48m
- Merged PRs (30d)
- 2
Description
The current implementation groups the listed skills in groups (in the example below "Languages" and "Web") and sorts the skills alphabetically.
```
technical_skill = [
# Languages
"Python", "Javascript", "Fortran",
# Web
"HTML", "CSS"
]
```
As a result:
```
Technical Skills
Tools: CSS, HTML
Languages: Fortran, Javascript, Python
```
This leads to unwanted results, e.g. Fortran and CSS coming before and getting more attention than Python and HTML. A workaround I am using is to hack `tech_skills.toml` or `cvcreator`'s code.
Let's get rid of the alphabetical sorting and trust the user on the ordering of the skills
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.