Sylvain Desbureaux | ae7b27a | 2019-02-14 13:45:22 +0100 | [diff] [blame] | 1 | # Node.js |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 2 | **/node |
| 3 | |
Alexis de Talhouët | 50f466c | 2019-04-12 18:49:29 -0400 | [diff] [blame] | 4 | # Python |
| 5 | **/*.pyc |
| 6 | |
SINGAL, KAPIL (ks220y) | 8a5e40f | 2019-09-16 22:03:41 +0000 | [diff] [blame] | 7 | **/.apt_generated |
Sylvain Desbureaux | ae7b27a | 2019-02-14 13:45:22 +0100 | [diff] [blame] | 8 | # Logs |
| 9 | logs |
| 10 | *.log |
Muthuramalingam, Brinda Santh | cb74139 | 2019-03-27 20:20:34 -0400 | [diff] [blame] | 11 | *.log.* |
Sylvain Desbureaux | ae7b27a | 2019-02-14 13:45:22 +0100 | [diff] [blame] | 12 | npm-debug.log* |
| 13 | yarn-debug.log* |
| 14 | yarn-error.log* |
| 15 | |
| 16 | # Runtime data |
| 17 | pids |
| 18 | *.pid |
| 19 | *.seed |
| 20 | *.pid.lock |
| 21 | |
| 22 | # Directory for instrumented libs generated by jscoverage/JSCover |
| 23 | lib-cov |
| 24 | |
| 25 | # Coverage directory used by tools like istanbul |
| 26 | coverage |
| 27 | |
| 28 | # nyc test coverage |
| 29 | .nyc_output |
| 30 | |
| 31 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) |
| 32 | .grunt |
| 33 | |
| 34 | # Bower dependency directory (https://bower.io/) |
| 35 | bower_components |
| 36 | |
| 37 | # node-waf configuration |
| 38 | .lock-wscript |
| 39 | |
| 40 | # Compiled binary addons (https://nodejs.org/api/addons.html) |
| 41 | build/Release |
| 42 | |
| 43 | # Dependency directories |
| 44 | node_modules/ |
| 45 | jspm_packages/ |
| 46 | dist/ |
Nirvan Ramjuttun | 087d4b6 | 2019-05-07 12:39:19 -0400 | [diff] [blame] | 47 | dist10/ |
Sylvain Desbureaux | ae7b27a | 2019-02-14 13:45:22 +0100 | [diff] [blame] | 48 | |
| 49 | # TypeScript v1 declaration files |
| 50 | typings/ |
| 51 | |
| 52 | # Optional npm cache directory |
| 53 | .npm |
| 54 | |
| 55 | # Optional eslint cache |
| 56 | .eslintcache |
| 57 | |
| 58 | # Optional REPL history |
| 59 | .node_repl_history |
| 60 | |
| 61 | # Output of 'npm pack' |
| 62 | *.tgz |
| 63 | |
| 64 | # Yarn Integrity file |
| 65 | .yarn-integrity |
| 66 | |
| 67 | # dotenv environment variables file |
| 68 | .env |
| 69 | .env.test |
| 70 | |
| 71 | # parcel-bundler cache (https://parceljs.org/) |
| 72 | .cache |
| 73 | |
| 74 | # next.js build output |
| 75 | .next |
| 76 | |
| 77 | # nuxt.js build output |
| 78 | .nuxt |
| 79 | |
| 80 | # vuepress build output |
| 81 | .vuepress/dist |
| 82 | |
| 83 | # Serverless directories |
| 84 | .serverless/ |
| 85 | |
| 86 | # FuseBox cache |
| 87 | .fusebox/ |
| 88 | |
| 89 | # DynamoDB Local files |
| 90 | .dynamodb/ |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 91 | |
Muthuramalingam, Brinda Santh | 3a2872a | 2019-03-22 17:21:30 -0400 | [diff] [blame] | 92 | # Microservices |
| 93 | |
| 94 | .classpath |
| 95 | .settings/ |
| 96 | |
| 97 | # Target dirs in all projects |
| 98 | **/target-ide/* |
| 99 | **/target/* |
| 100 | **/logs/* |
| 101 | **/tokens/* |
SINGAL, KAPIL (ks220y) | 8a5e40f | 2019-09-16 22:03:41 +0000 | [diff] [blame] | 102 | **/lib/cachedir/** |
Muthuramalingam, Brinda Santh | 3a2872a | 2019-03-22 17:21:30 -0400 | [diff] [blame] | 103 | |
| 104 | # Added for Intellij IDEA IDE |
| 105 | **/*.ipr |
| 106 | **/*.iws |
| 107 | **/debug-logs/* |
| 108 | **/.idea/* |
| 109 | **/*.iml |
| 110 | **/*.project |
| 111 | **/.springBeans |
Brinda Santh | ef03bd4 | 2019-07-24 20:38:36 -0400 | [diff] [blame] | 112 | **/.factorypath |
SINGAL, KAPIL (ks220y) | 8a5e40f | 2019-09-16 22:03:41 +0000 | [diff] [blame] | 113 | **/.directory |
Muthuramalingam, Brinda Santh | 3a2872a | 2019-03-22 17:21:30 -0400 | [diff] [blame] | 114 | |
SINGAL, KAPIL (ks220y) | 8a5e40f | 2019-09-16 22:03:41 +0000 | [diff] [blame] | 115 | **/transaction.log |
Muthuramalingam, Brinda Santh | 3a2872a | 2019-03-22 17:21:30 -0400 | [diff] [blame] | 116 | **/*versionsBackup |
| 117 | **/blackDuckHub* |
| 118 | **/*.jsonld |
| 119 | **/.checkstyle |
Muthuramalingam, Brinda Santh | 3a2872a | 2019-03-22 17:21:30 -0400 | [diff] [blame] | 120 | |
| 121 | **/*.log |
| 122 | **/*py.class |
| 123 | **/.DS_Store |
| 124 | |
| 125 | # To Remove Kotlin Script Generated Jars |
| 126 | **/*cba-kts.jar |
| 127 | |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 128 | # Added for Intellij IDEA IDE |
| 129 | **/*.ipr |
| 130 | **/*.iws |
| 131 | **/debug-logs/* |
| 132 | **/.idea/* |
| 133 | **/*.iml |
| 134 | **/*.project |
| 135 | **/.springBeans |
| 136 | |
| 137 | # Target dirs in all projects |
| 138 | **/target-ide/* |
| 139 | **/target/* |
| 140 | **/logs/* |
| 141 | **/tokens/* |
| 142 | |
| 143 | # Public site |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 144 | cds-ui/server/public |
| 145 | |
| 146 | # Python generated class |
| 147 | **/*py.class |
Brinda Santh | 807fbaa | 2019-09-23 10:10:58 -0400 | [diff] [blame] | 148 | **/venv |
Alexis de Talhouët | c90edac | 2019-03-25 13:04:18 -0400 | [diff] [blame] | 149 | |
| 150 | MacOS |
| 151 | **/.DS_Store |
| 152 | |
| 153 | # To Remove Kotlin Script Generated Jars |
| 154 | **/*cba-kts.jar |
Brinda Santh | ef03bd4 | 2019-07-24 20:38:36 -0400 | [diff] [blame] | 155 | **/application/blueprints |
Chandan Ghosh | 5d55c41 | 2019-04-09 15:18:05 +0530 | [diff] [blame] | 156 | /target/ |
SINGAL, KAPIL (ks220y) | 8a5e40f | 2019-09-16 22:03:41 +0000 | [diff] [blame] | 157 | |
Timoney, Dan (dt5972) | dc863f4 | 2019-12-11 12:28:44 -0500 | [diff] [blame] | 158 | # Generated dependency list |
| 159 | direct-dependencies.txt |