| tierno | 2e21551 | 2018-11-28 09:37:52 +0000 | [diff] [blame] | 1 | ## |
| 2 | # Licensed under the Apache License, Version 2.0 (the "License"); you may | ||||
| 3 | # not use this file except in compliance with the License. You may obtain | ||||
| 4 | # a copy of the License at | ||||
| 5 | # | ||||
| 6 | # http://www.apache.org/licenses/LICENSE-2.0 | ||||
| 7 | # | ||||
| 8 | # Unless required by applicable law or agreed to in writing, software | ||||
| 9 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||||
| 10 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||||
| 11 | # License for the specific language governing permissions and limitations | ||||
| 12 | # under the License. | ||||
| 13 | ## | ||||
| 14 | |||||
| tierno | c0e42e2 | 2018-05-11 11:36:10 +0200 | [diff] [blame] | 15 | # This is a template with common files to be igonored, after clone make a copy to .gitignore |
| 16 | # cp .gitignore-common .gitignore | ||||
| 17 | |||||
| 18 | *.pyc | ||||
| 19 | *.pyo | ||||
| 20 | |||||
| garciaale | 6500339 | 2020-10-21 15:21:37 -0300 | [diff] [blame] | 21 | # auto-ignore |
| tierno | c0e42e2 | 2018-05-11 11:36:10 +0200 | [diff] [blame] | 22 | .gitignore |
| 23 | |||||
| garciaale | 6500339 | 2020-10-21 15:21:37 -0300 | [diff] [blame] | 24 | # logs |
| tierno | c0e42e2 | 2018-05-11 11:36:10 +0200 | [diff] [blame] | 25 | logs |
| 26 | |||||
| garciaale | 6500339 | 2020-10-21 15:21:37 -0300 | [diff] [blame] | 27 | # pycharm |
| tierno | c0e42e2 | 2018-05-11 11:36:10 +0200 | [diff] [blame] | 28 | .idea |
| garciaale | 6500339 | 2020-10-21 15:21:37 -0300 | [diff] [blame] | 29 | venv |
| tierno | c0e42e2 | 2018-05-11 11:36:10 +0200 | [diff] [blame] | 30 | |
| garciaale | 6500339 | 2020-10-21 15:21:37 -0300 | [diff] [blame] | 31 | # tox |
| 32 | .tox | ||||
| 33 | |||||
| 34 | # eclipse | ||||
| tierno | c0e42e2 | 2018-05-11 11:36:10 +0200 | [diff] [blame] | 35 | .project |
| 36 | .pydevproject | ||||
| 37 | .settings | ||||
| 38 | |||||
| garciaale | 6500339 | 2020-10-21 15:21:37 -0300 | [diff] [blame] | 39 | # local stuff files that end in ".local" or folders called "local" |
| tierno | c0e42e2 | 2018-05-11 11:36:10 +0200 | [diff] [blame] | 40 | local |
| tierno | 51d065c | 2019-08-26 16:48:23 +0000 | [diff] [blame] | 41 | osm_lcm/local |
| 42 | osm_lcm/test/local | ||||
| tierno | c0e42e2 | 2018-05-11 11:36:10 +0200 | [diff] [blame] | 43 | |
| garciaale | 6500339 | 2020-10-21 15:21:37 -0300 | [diff] [blame] | 44 | # local stuff files that end in ".temp" or folders called "temp" |
| tierno | c0e42e2 | 2018-05-11 11:36:10 +0200 | [diff] [blame] | 45 | *.temp |
| tierno | 51d065c | 2019-08-26 16:48:23 +0000 | [diff] [blame] | 46 | osm_lcm/temp |
| 47 | osm_lcm/test/temp | ||||
| tierno | c0e42e2 | 2018-05-11 11:36:10 +0200 | [diff] [blame] | 48 | |
| garciaale | 6500339 | 2020-10-21 15:21:37 -0300 | [diff] [blame] | 49 | # distribution and package generation |
| tierno | c0e42e2 | 2018-05-11 11:36:10 +0200 | [diff] [blame] | 50 | build |
| 51 | dist | ||||
| 52 | *.egg-info | ||||
| tierno | fa66d15 | 2018-08-28 10:13:45 +0000 | [diff] [blame] | 53 | .eggs |
| tierno | c0e42e2 | 2018-05-11 11:36:10 +0200 | [diff] [blame] | 54 | |
| garciaale | 6500339 | 2020-10-21 15:21:37 -0300 | [diff] [blame] | 55 | # Unit test / coverage reports |
| 56 | .coverage | ||||
| 57 | cover | ||||
| 58 | coverage.xml | ||||
| 59 | nosetests.xml | ||||
| 60 | |||||