.gitignore 889 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. surma-ashley-test
  51. nmiejs.wasm
  52. nmiejs.js
  53. # local env files
  54. .env.local
  55. .env.*.local
  56. # Log files
  57. npm-debug.log*
  58. yarn-debug.log*
  59. yarn-error.log*
  60. # Editor directories and files
  61. .idea
  62. .vscode
  63. *.suo
  64. *.ntvs*
  65. *.njsproj
  66. *.sln
  67. *.sw?
  68. # end of web vue cli section
  69. ###########################################