You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

196 lines
2.4 KiB

  1. *.pyc
  2. *.py~
  3. *.comp.js
  4. *.DS_Store
  5. locale
  6. .wnf-lang-status
  7. *.swp
  8. *.egg-info
  9. dist/
  10. # build/
  11. frappe/docs/current
  12. frappe/public/dist
  13. .vscode
  14. node_modules
  15. .kdev4/
  16. *.kdev4
  17. *debug.log
  18. # Not Recommended, but will remove once webpack ready
  19. package-lock.json
  20. # Byte-compiled / optimized / DLL files
  21. __pycache__/
  22. *.py[cod]
  23. *$py.class
  24. # C extensions
  25. *.so
  26. # Distribution / packaging
  27. .Python
  28. # build/
  29. develop-eggs/
  30. dist/
  31. downloads/
  32. eggs/
  33. .eggs/
  34. lib/
  35. lib64/
  36. parts/
  37. sdist/
  38. var/
  39. wheels/
  40. *.egg-info/
  41. .installed.cfg
  42. *.egg
  43. MANIFEST
  44. # PyInstaller
  45. # Usually these files are written by a python script from a template
  46. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  47. *.manifest
  48. *.spec
  49. # Installer logs
  50. pip-log.txt
  51. pip-delete-this-directory.txt
  52. # Unit test / coverage reports
  53. htmlcov/
  54. .tox/
  55. .coverage
  56. .coverage.*
  57. .cache
  58. nosetests.xml
  59. coverage.xml
  60. *.cover
  61. .hypothesis/
  62. .pytest_cache/
  63. # Translations
  64. *.mo
  65. *.pot
  66. # Django stuff:
  67. *.log
  68. .static_storage/
  69. .media/
  70. local_settings.py
  71. # Flask stuff:
  72. instance/
  73. .webassets-cache
  74. # Scrapy stuff:
  75. .scrapy
  76. # Sphinx documentation
  77. docs/_build/
  78. # PyBuilder
  79. target/
  80. # Jupyter Notebook
  81. .ipynb_checkpoints
  82. # pyenv
  83. .python-version
  84. # celery beat schedule file
  85. celerybeat-schedule
  86. # SageMath parsed files
  87. *.sage.py
  88. # Environments
  89. .env
  90. .venv
  91. env/
  92. venv/
  93. ENV/
  94. env.bak/
  95. venv.bak/
  96. # Spyder project settings
  97. .spyderproject
  98. .spyproject
  99. # Rope project settings
  100. .ropeproject
  101. # mkdocs documentation
  102. /site
  103. # mypy
  104. .mypy_cache/
  105. # Logs
  106. logs
  107. *.log
  108. npm-debug.log*
  109. yarn-debug.log*
  110. yarn-error.log*
  111. # Runtime data
  112. pids
  113. *.pid
  114. *.seed
  115. *.pid.lock
  116. # Directory for instrumented libs generated by jscoverage/JSCover
  117. lib-cov
  118. # Coverage directory used by tools like istanbul
  119. coverage
  120. # nyc test coverage
  121. .nyc_output
  122. # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
  123. .grunt
  124. # Bower dependency directory (https://bower.io/)
  125. bower_components
  126. # node-waf configuration
  127. .lock-wscript
  128. # Compiled binary addons (https://nodejs.org/api/addons.html)
  129. build/Release
  130. # Dependency directories
  131. node_modules/
  132. jspm_packages/
  133. # Typescript v1 declaration files
  134. typings/
  135. # Optional npm cache directory
  136. .npm
  137. # Optional eslint cache
  138. .eslintcache
  139. # Optional REPL history
  140. .node_repl_history
  141. # Output of 'npm pack'
  142. *.tgz
  143. # Yarn Integrity file
  144. .yarn-integrity
  145. # dotenv environment variables file
  146. .env
  147. # next.js build output
  148. .next
  149. # cypress
  150. cypress/screenshots
  151. cypress/videos
  152. # JetBrains IDEs
  153. .idea/