.gitignore 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. # Prerequisites
  2. *.d
  3. # Object files
  4. *.o
  5. *.ko
  6. *.obj
  7. *.elf
  8. # Linker output
  9. *.ilk
  10. *.map
  11. *.exp
  12. # Precompiled Headers
  13. *.gch
  14. *.pch
  15. # Libraries
  16. *.lib
  17. *.a
  18. *.la
  19. *.lo
  20. # Shared objects (inc. Windows DLLs)
  21. *.dll
  22. *.so
  23. *.so.*
  24. *.dylib
  25. # Executables
  26. *.exe
  27. *.out
  28. *.app
  29. *.i*86
  30. *.x86_64
  31. *.hex
  32. # Debug files
  33. *.dSYM/
  34. *.su
  35. *.idb
  36. *.pdb
  37. # Kernel Module Compile Results
  38. *.mod*
  39. *.cmd
  40. .tmp_versions/
  41. modules.order
  42. Module.symvers
  43. Mkfile.old
  44. dkms.conf
  45. # Compiled binary files
  46. bin/*
  47. # Keep files
  48. !.keep
  49. # Compiled documentation
  50. docs/html/
  51. # Valgrind data
  52. vgcore.*
  53. callgrind.out.*
  54. ## PYTHON ##
  55. # Byte-compiled / optimized / DLL files
  56. __pycache__/
  57. *.py[cod]
  58. *$py.class
  59. # C extensions
  60. *.so
  61. # Distribution / packaging
  62. .Python
  63. build/
  64. develop-eggs/
  65. dist/
  66. downloads/
  67. eggs/
  68. .eggs/
  69. lib/
  70. lib64/
  71. parts/
  72. sdist/
  73. var/
  74. wheels/
  75. *.egg-info/
  76. .installed.cfg
  77. *.egg
  78. MANIFEST
  79. # Environments
  80. .env
  81. .venv
  82. env/
  83. venv/
  84. ENV/
  85. env.bak/
  86. venv.bak/
  87. ## LOCAL ##
  88. sandbox.c
  89. sandbox/
  90. # Lexer and parser artifacts.
  91. src/codec/grammar_*.c
  92. src/codec/grammar_*.h
  93. src/codec/parser_*.c
  94. include/codec/tokens_*.h
  95. # IDE
  96. .syntastic*
  97. .vimrc
  98. tags