Your project gitignore file should not contain user-specific files 2

More information: https://insight.symfony.com/what-we-analyse/git.user_specific_ignored_file

in .gitignore, line 3
  1. # Generic
  2. # --------------------------
  3. Thumbs.db

    Thumbs.db is user-specific and should not appear in a project .gitignore. Consider adding it to the user global .gitignore instead.

    Time to fix: about 15 minutes
    Read doc Open Issue Permalink
    Last edited by Fery Wardiyanto
  4. Desktop.ini
  5. .directory
  6. *.cache
  7. *.old
  8. *.log
in .gitignore, line 29
  1. vendor
  2. yarn.lock
  3. # IDE Project Configurations
  4. # --------------------------
  5. .idea

    .idea is user-specific and should not appear in a project .gitignore. Consider adding it to the user global .gitignore instead.

    Time to fix: about 15 minutes
    Read doc Open Issue Permalink
    Last edited by Fery Wardiyanto
  6. .settings
  7. .vscode
  8. .project
  9. *.sublime-*