merging Python.gitignore for PR #1801
This commit is contained in:
commit
71bbd933ee
@ -15,7 +15,7 @@ robots.txt
|
|||||||
/MAINTAINERS.txt
|
/MAINTAINERS.txt
|
||||||
/UPGRADE.txt
|
/UPGRADE.txt
|
||||||
/README.txt
|
/README.txt
|
||||||
sites/all/README.txt
|
sites/README.txt
|
||||||
sites/all/modules/README.txt
|
sites/all/modules/README.txt
|
||||||
sites/all/themes/README.txt
|
sites/all/themes/README.txt
|
||||||
|
|
||||||
|
@ -11,6 +11,10 @@
|
|||||||
# comment the following line if you want to have your project file included.
|
# comment the following line if you want to have your project file included.
|
||||||
eagle.epf
|
eagle.epf
|
||||||
|
|
||||||
|
# Autorouter files
|
||||||
|
*.pro
|
||||||
|
*.job
|
||||||
|
|
||||||
# CAM files
|
# CAM files
|
||||||
*.$$$
|
*.$$$
|
||||||
*.cmp
|
*.cmp
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
*.pydevproject
|
|
||||||
.metadata
|
.metadata
|
||||||
.gradle
|
|
||||||
bin/
|
bin/
|
||||||
tmp/
|
tmp/
|
||||||
*.tmp
|
*.tmp
|
||||||
@ -20,7 +19,10 @@ local.properties
|
|||||||
# Locally stored "Eclipse launch configurations"
|
# Locally stored "Eclipse launch configurations"
|
||||||
*.launch
|
*.launch
|
||||||
|
|
||||||
# CDT-specific
|
# PyDev specific (Python IDE for Eclipse)
|
||||||
|
*.pydevproject
|
||||||
|
|
||||||
|
# CDT-specific (C/C++ Development Tooling)
|
||||||
.cproject
|
.cproject
|
||||||
|
|
||||||
# JDT-specific (Eclipse Java Development Tools)
|
# JDT-specific (Eclipse Java Development Tools)
|
||||||
@ -29,14 +31,20 @@ local.properties
|
|||||||
# Java annotation processor (APT)
|
# Java annotation processor (APT)
|
||||||
.factorypath
|
.factorypath
|
||||||
|
|
||||||
# PDT-specific
|
# PDT-specific (PHP Development Tools)
|
||||||
.buildpath
|
.buildpath
|
||||||
|
|
||||||
# sbteclipse plugin
|
# sbteclipse plugin
|
||||||
.target
|
.target
|
||||||
|
|
||||||
|
# Tern plugin
|
||||||
|
.tern-project
|
||||||
|
|
||||||
# TeXlipse plugin
|
# TeXlipse plugin
|
||||||
.texlipse
|
.texlipse
|
||||||
|
|
||||||
# STS (Spring Tool Suite)
|
# STS (Spring Tool Suite)
|
||||||
.springBeans
|
.springBeans
|
||||||
|
|
||||||
|
# Code Recommenders
|
||||||
|
.recommenders/
|
||||||
|
@ -1,2 +1,2 @@
|
|||||||
# The compilation directoy
|
# The compilation directory
|
||||||
EIFGENs
|
EIFGENs
|
||||||
|
@ -30,3 +30,6 @@ tramp
|
|||||||
|
|
||||||
# cask packages
|
# cask packages
|
||||||
.cask/
|
.cask/
|
||||||
|
|
||||||
|
# server auth directory
|
||||||
|
/server/
|
||||||
|
@ -1,33 +1,26 @@
|
|||||||
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
|
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
|
||||||
|
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
||||||
*.iml
|
|
||||||
|
|
||||||
## Directory-based project format:
|
|
||||||
.idea/
|
|
||||||
# if you remove the above rule, at least ignore the following:
|
|
||||||
|
|
||||||
# User-specific stuff:
|
# User-specific stuff:
|
||||||
# .idea/workspace.xml
|
.idea/workspace.xml
|
||||||
# .idea/tasks.xml
|
.idea/tasks.xml
|
||||||
# .idea/dictionaries
|
.idea/dictionaries
|
||||||
# .idea/shelf
|
|
||||||
|
|
||||||
# Sensitive or high-churn files:
|
# Sensitive or high-churn files:
|
||||||
# .idea/dataSources.ids
|
.idea/dataSources.ids
|
||||||
# .idea/dataSources.xml
|
.idea/dataSources.xml
|
||||||
# .idea/sqlDataSources.xml
|
.idea/sqlDataSources.xml
|
||||||
# .idea/dynamic.xml
|
.idea/dynamic.xml
|
||||||
# .idea/uiDesigner.xml
|
.idea/uiDesigner.xml
|
||||||
|
|
||||||
# Gradle:
|
# Gradle:
|
||||||
# .idea/gradle.xml
|
.idea/gradle.xml
|
||||||
# .idea/libraries
|
.idea/libraries
|
||||||
|
|
||||||
# Mongo Explorer plugin:
|
# Mongo Explorer plugin:
|
||||||
# .idea/mongoSettings.xml
|
.idea/mongoSettings.xml
|
||||||
|
|
||||||
## File-based project format:
|
## File-based project format:
|
||||||
*.ipr
|
|
||||||
*.iws
|
*.iws
|
||||||
|
|
||||||
## Plugin-specific files:
|
## Plugin-specific files:
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
*~
|
*~
|
||||||
|
|
||||||
|
# temporary files which can be created if a process still has a handle open of a deleted file
|
||||||
|
.fuse_hidden*
|
||||||
|
|
||||||
# KDE directory preferences
|
# KDE directory preferences
|
||||||
.directory
|
.directory
|
||||||
|
|
||||||
|
@ -1,6 +1,10 @@
|
|||||||
|
# swap
|
||||||
[._]*.s[a-w][a-z]
|
[._]*.s[a-w][a-z]
|
||||||
[._]s[a-w][a-z]
|
[._]s[a-w][a-z]
|
||||||
|
# persistent undo
|
||||||
*.un~
|
*.un~
|
||||||
|
# session
|
||||||
Session.vim
|
Session.vim
|
||||||
|
# temporary
|
||||||
.netrwhist
|
.netrwhist
|
||||||
*~
|
*~
|
||||||
|
@ -4,7 +4,9 @@
|
|||||||
[Bb]in
|
[Bb]in
|
||||||
[Ii]nclude
|
[Ii]nclude
|
||||||
[Ll]ib
|
[Ll]ib
|
||||||
|
[Ll]ib64
|
||||||
[Ll]ocal
|
[Ll]ocal
|
||||||
[Ss]cripts
|
[Ss]cripts
|
||||||
pyvenv.cfg
|
pyvenv.cfg
|
||||||
|
.venv
|
||||||
pip-selfcheck.json
|
pip-selfcheck.json
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
## Build generated
|
## Build generated
|
||||||
build/
|
build/
|
||||||
DerivedData
|
DerivedData/
|
||||||
|
|
||||||
## Various settings
|
## Various settings
|
||||||
*.pbxuser
|
*.pbxuser
|
||||||
@ -15,9 +15,9 @@ DerivedData
|
|||||||
!default.mode2v3
|
!default.mode2v3
|
||||||
*.perspectivev3
|
*.perspectivev3
|
||||||
!default.perspectivev3
|
!default.perspectivev3
|
||||||
xcuserdata
|
xcuserdata/
|
||||||
|
|
||||||
## Other
|
## Other
|
||||||
*.xccheckout
|
|
||||||
*.moved-aside
|
*.moved-aside
|
||||||
*.xcuserstate
|
*.xccheckout
|
||||||
|
*.xcscmblueprint
|
||||||
|
2
LICENSE
2
LICENSE
@ -1,4 +1,4 @@
|
|||||||
Copyright (c) 2015 GitHub, Inc.
|
Copyright (c) 2016 GitHub, Inc.
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a
|
Permission is hereby granted, free of charge, to any person obtaining a
|
||||||
copy of this software and associated documentation files (the "Software"),
|
copy of this software and associated documentation files (the "Software"),
|
||||||
|
@ -24,7 +24,6 @@ coverage
|
|||||||
build/Release
|
build/Release
|
||||||
|
|
||||||
# Dependency directory
|
# Dependency directory
|
||||||
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
|
|
||||||
node_modules
|
node_modules
|
||||||
|
|
||||||
# Optional npm cache directory
|
# Optional npm cache directory
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
## Build generated
|
## Build generated
|
||||||
build/
|
build/
|
||||||
DerivedData
|
DerivedData/
|
||||||
|
|
||||||
## Various settings
|
## Various settings
|
||||||
*.pbxuser
|
*.pbxuser
|
||||||
@ -15,12 +15,11 @@ DerivedData
|
|||||||
!default.mode2v3
|
!default.mode2v3
|
||||||
*.perspectivev3
|
*.perspectivev3
|
||||||
!default.perspectivev3
|
!default.perspectivev3
|
||||||
xcuserdata
|
xcuserdata/
|
||||||
|
|
||||||
## Other
|
## Other
|
||||||
*.xccheckout
|
|
||||||
*.moved-aside
|
*.moved-aside
|
||||||
*.xcuserstate
|
*.xccheckout
|
||||||
*.xcscmblueprint
|
*.xcscmblueprint
|
||||||
|
|
||||||
## Obj-C/Swift specific
|
## Obj-C/Swift specific
|
||||||
|
@ -51,6 +51,7 @@ coverage.xml
|
|||||||
|
|
||||||
# Django stuff:
|
# Django stuff:
|
||||||
*.log
|
*.log
|
||||||
|
local_settings.py
|
||||||
|
|
||||||
# Sphinx documentation
|
# Sphinx documentation
|
||||||
docs/_build/
|
docs/_build/
|
||||||
@ -58,5 +59,9 @@ docs/_build/
|
|||||||
# PyBuilder
|
# PyBuilder
|
||||||
target/
|
target/
|
||||||
|
|
||||||
|
#Ipython Notebook
|
||||||
|
.ipynb_checkpoints
|
||||||
|
|
||||||
# pyenv
|
# pyenv
|
||||||
.python-version
|
.python-version
|
||||||
|
|
||||||
|
@ -32,3 +32,7 @@ Makefile*
|
|||||||
#QtCtreator Qml
|
#QtCtreator Qml
|
||||||
*.qmlproject.user
|
*.qmlproject.user
|
||||||
*.qmlproject.user.*
|
*.qmlproject.user.*
|
||||||
|
|
||||||
|
#QtCtreator CMake
|
||||||
|
CMakeLists.txt.user
|
||||||
|
|
||||||
|
@ -16,11 +16,11 @@ pickle-email-*.html
|
|||||||
config/initializers/secret_token.rb
|
config/initializers/secret_token.rb
|
||||||
config/secrets.yml
|
config/secrets.yml
|
||||||
|
|
||||||
## Environment normalisation:
|
## Environment normalization:
|
||||||
/.bundle
|
/.bundle
|
||||||
/vendor/bundle
|
/vendor/bundle
|
||||||
|
|
||||||
# these should all be checked in to normalise the environment:
|
# these should all be checked in to normalize the environment:
|
||||||
# Gemfile.lock, .ruby-version, .ruby-gemset
|
# Gemfile.lock, .ruby-version, .ruby-gemset
|
||||||
|
|
||||||
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
||||||
@ -33,3 +33,6 @@ bower.json
|
|||||||
|
|
||||||
# Ignore pow environment settings
|
# Ignore pow environment settings
|
||||||
.powenv
|
.powenv
|
||||||
|
|
||||||
|
# Ignore Byebug command history file.
|
||||||
|
.byebug_history
|
||||||
|
@ -21,7 +21,7 @@ build/
|
|||||||
/doc/
|
/doc/
|
||||||
/rdoc/
|
/rdoc/
|
||||||
|
|
||||||
## Environment normalisation:
|
## Environment normalization:
|
||||||
/.bundle/
|
/.bundle/
|
||||||
/vendor/bundle
|
/vendor/bundle
|
||||||
/lib/bundler/man/
|
/lib/bundler/man/
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
## Build generated
|
## Build generated
|
||||||
build/
|
build/
|
||||||
DerivedData
|
DerivedData/
|
||||||
|
|
||||||
## Various settings
|
## Various settings
|
||||||
*.pbxuser
|
*.pbxuser
|
||||||
@ -15,18 +15,21 @@ DerivedData
|
|||||||
!default.mode2v3
|
!default.mode2v3
|
||||||
*.perspectivev3
|
*.perspectivev3
|
||||||
!default.perspectivev3
|
!default.perspectivev3
|
||||||
xcuserdata
|
xcuserdata/
|
||||||
|
|
||||||
## Other
|
## Other
|
||||||
*.xccheckout
|
|
||||||
*.moved-aside
|
*.moved-aside
|
||||||
*.xcuserstate
|
*.xccheckout
|
||||||
*.xcscmblueprint
|
*.xcscmblueprint
|
||||||
|
|
||||||
## Obj-C/Swift specific
|
## Obj-C/Swift specific
|
||||||
*.hmap
|
*.hmap
|
||||||
*.ipa
|
*.ipa
|
||||||
|
|
||||||
|
## Playgrounds
|
||||||
|
timeline.xctimeline
|
||||||
|
playground.xcworkspace
|
||||||
|
|
||||||
# Swift Package Manager
|
# Swift Package Manager
|
||||||
#
|
#
|
||||||
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
|
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
*.fls
|
*.fls
|
||||||
*.out
|
*.out
|
||||||
*.toc
|
*.toc
|
||||||
|
*.fmt
|
||||||
|
|
||||||
## Intermediate documents:
|
## Intermediate documents:
|
||||||
*.dvi
|
*.dvi
|
||||||
@ -32,8 +33,6 @@
|
|||||||
*.pdfsync
|
*.pdfsync
|
||||||
|
|
||||||
## Auxiliary and intermediate files from other packages:
|
## Auxiliary and intermediate files from other packages:
|
||||||
|
|
||||||
|
|
||||||
# algorithms
|
# algorithms
|
||||||
*.alg
|
*.alg
|
||||||
*.loa
|
*.loa
|
||||||
@ -49,6 +48,9 @@ acs-*.bib
|
|||||||
*.snm
|
*.snm
|
||||||
*.vrb
|
*.vrb
|
||||||
|
|
||||||
|
# cprotect
|
||||||
|
*.cpt
|
||||||
|
|
||||||
#(e)ledmac/(e)ledpar
|
#(e)ledmac/(e)ledpar
|
||||||
*.end
|
*.end
|
||||||
*.[1-9]
|
*.[1-9]
|
||||||
@ -93,6 +95,8 @@ acs-*.bib
|
|||||||
|
|
||||||
# minitoc
|
# minitoc
|
||||||
*.maf
|
*.maf
|
||||||
|
*.mlf
|
||||||
|
*.mlt
|
||||||
*.mtc
|
*.mtc
|
||||||
*.mtc[0-9]
|
*.mtc[0-9]
|
||||||
*.mtc[1-9][0-9]
|
*.mtc[1-9][0-9]
|
||||||
@ -142,6 +146,9 @@ pythontex-files-*/
|
|||||||
# xindy
|
# xindy
|
||||||
*.xdy
|
*.xdy
|
||||||
|
|
||||||
|
# xypic precompiled matrices
|
||||||
|
*.xyc
|
||||||
|
|
||||||
# WinEdt
|
# WinEdt
|
||||||
*.bak
|
*.bak
|
||||||
*.sav
|
*.sav
|
||||||
@ -149,3 +156,6 @@ pythontex-files-*/
|
|||||||
# endfloat
|
# endfloat
|
||||||
*.ttt
|
*.ttt
|
||||||
*.fff
|
*.fff
|
||||||
|
|
||||||
|
# Latexian
|
||||||
|
TSWLatexianTemp*
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
## TYPO3 v6.2
|
## TYPO3 v6.2
|
||||||
# Ignore serveral upload and file directories.
|
# Ignore several upload and file directories.
|
||||||
/fileadmin/user_upload/
|
/fileadmin/user_upload/
|
||||||
/fileadmin/_temp_/
|
/fileadmin/_temp_/
|
||||||
/fileadmin/_processed_/
|
/fileadmin/_processed_/
|
||||||
|
@ -24,3 +24,7 @@ ExportedObj/
|
|||||||
|
|
||||||
# Unity3D Generated File On Crash Reports
|
# Unity3D Generated File On Crash Reports
|
||||||
sysinfo.txt
|
sysinfo.txt
|
||||||
|
|
||||||
|
# Builds
|
||||||
|
*.apk
|
||||||
|
*.unitypackage
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
*.suo
|
*.suo
|
||||||
*.opensdf
|
*.opensdf
|
||||||
*.sdf
|
*.sdf
|
||||||
|
*.VC.opendb
|
||||||
|
|
||||||
# Precompiled Assets
|
# Precompiled Assets
|
||||||
SourceArt/**/*.png
|
SourceArt/**/*.png
|
||||||
|
@ -17,10 +17,10 @@
|
|||||||
[Rr]eleases/
|
[Rr]eleases/
|
||||||
x64/
|
x64/
|
||||||
x86/
|
x86/
|
||||||
build/
|
|
||||||
bld/
|
bld/
|
||||||
[Bb]in/
|
[Bb]in/
|
||||||
[Oo]bj/
|
[Oo]bj/
|
||||||
|
[Ll]og/
|
||||||
|
|
||||||
# Visual Studio 2015 cache/options directory
|
# Visual Studio 2015 cache/options directory
|
||||||
.vs/
|
.vs/
|
||||||
@ -151,17 +151,24 @@ publish/
|
|||||||
!**/packages/build/
|
!**/packages/build/
|
||||||
# Uncomment if necessary however generally it will be regenerated when needed
|
# Uncomment if necessary however generally it will be regenerated when needed
|
||||||
#!**/packages/repositories.config
|
#!**/packages/repositories.config
|
||||||
|
# NuGet v3's project.json files produces more ignoreable files
|
||||||
|
*.nuget.props
|
||||||
|
*.nuget.targets
|
||||||
|
|
||||||
# Windows Azure Build Output
|
# Microsoft Azure Build Output
|
||||||
csx/
|
csx/
|
||||||
*.build.csdef
|
*.build.csdef
|
||||||
|
|
||||||
# Windows Azure Emulator
|
# Microsoft Azure Emulator
|
||||||
ecf/
|
ecf/
|
||||||
rcf/
|
rcf/
|
||||||
|
|
||||||
|
# Microsoft Azure ApplicationInsights config file
|
||||||
|
ApplicationInsights.config
|
||||||
|
|
||||||
# Windows Store app package directory
|
# Windows Store app package directory
|
||||||
AppPackages/
|
AppPackages/
|
||||||
|
BundleArtifacts/
|
||||||
|
|
||||||
# Visual Studio cache files
|
# Visual Studio cache files
|
||||||
# files ending in .cache can be ignored
|
# files ending in .cache can be ignored
|
||||||
@ -171,7 +178,6 @@ AppPackages/
|
|||||||
|
|
||||||
# Others
|
# Others
|
||||||
ClientBin/
|
ClientBin/
|
||||||
[Ss]tyle[Cc]op.*
|
|
||||||
~$*
|
~$*
|
||||||
*~
|
*~
|
||||||
*.dbmdl
|
*.dbmdl
|
||||||
|
Loading…
Reference in New Issue
Block a user