blob: 2e842150764ee9ac3e4b0c11e1654d1175c29b53 [file] [log] [blame]
tierno2e215512018-11-28 09:37:52 +00001##
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
tiernoc0e42e22018-05-11 11:36:10 +020015# 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
tiernof678bc22020-08-14 10:45:42 +000021# auto-ignore
tiernoc0e42e22018-05-11 11:36:10 +020022.gitignore
23
tiernof678bc22020-08-14 10:45:42 +000024# logs
tiernoc0e42e22018-05-11 11:36:10 +020025logs
26
tiernof678bc22020-08-14 10:45:42 +000027# pycharm
tiernoc0e42e22018-05-11 11:36:10 +020028.idea
tiernof678bc22020-08-14 10:45:42 +000029venv
tiernoc0e42e22018-05-11 11:36:10 +020030
tiernof678bc22020-08-14 10:45:42 +000031# tox
32.tox
33
34# eclipse
tiernoc0e42e22018-05-11 11:36:10 +020035.project
36.pydevproject
37.settings
38
tiernof678bc22020-08-14 10:45:42 +000039# local stuff files that end in ".local" or folders called "local"
tiernoc0e42e22018-05-11 11:36:10 +020040local
tierno51d065c2019-08-26 16:48:23 +000041osm_lcm/local
42osm_lcm/test/local
tiernoc0e42e22018-05-11 11:36:10 +020043
tiernof678bc22020-08-14 10:45:42 +000044# local stuff files that end in ".temp" or folders called "temp"
tiernoc0e42e22018-05-11 11:36:10 +020045*.temp
tierno51d065c2019-08-26 16:48:23 +000046osm_lcm/temp
47osm_lcm/test/temp
tiernoc0e42e22018-05-11 11:36:10 +020048
tiernof678bc22020-08-14 10:45:42 +000049# distribution and package generation
tiernoc0e42e22018-05-11 11:36:10 +020050build
51dist
52*.egg-info
tiernofa66d152018-08-28 10:13:45 +000053.eggs
tiernoc0e42e22018-05-11 11:36:10 +020054
garciadeblas92aa6272020-02-19 17:40:44 +010055# Unit test / coverage reports
56.coverage
57cover
58coverage.xml
59nosetests.xml
60