.gitignore 849 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. # Compiled Object files
  2. *.slo
  3. *.lo
  4. *.o
  5. *.obj
  6. # Precompiled Headers
  7. *.gch
  8. *.pch
  9. # Compiled Dynamic libraries
  10. *.so
  11. *.dylib
  12. *.dll
  13. # Fortran module files
  14. *.mod
  15. # Compiled Static libraries
  16. *.lai
  17. *.la
  18. *.a
  19. *.lib
  20. # Executables
  21. *.exe
  22. *.out
  23. *.app
  24. # Binary
  25. *.bin
  26. # Temp
  27. *~
  28. oprofiletmp
  29. callgrind
  30. oprofile_data
  31. out.dot
  32. cov-int*
  33. cov-int
  34. build*
  35. .ipynb_checkpoints
  36. tests/python/field.txt
  37. examples/*.pdf
  38. examples/*.png
  39. examples/*.7z
  40. examples/Egor*
  41. examples/egor*
  42. examples/*.txt
  43. examples/*.pyc
  44. backup*
  45. ###########################################
  46. # Web vue cli section
  47. .DS_Store
  48. node_modules
  49. /dist
  50. # local env files
  51. .env.local
  52. .env.*.local
  53. # Log files
  54. npm-debug.log*
  55. yarn-debug.log*
  56. yarn-error.log*
  57. # Editor directories and files
  58. .idea
  59. .vscode
  60. *.suo
  61. *.ntvs*
  62. *.njsproj
  63. *.sln
  64. *.sw?
  65. # end of web vue cli section
  66. ###########################################