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