blob: d5e4365085eff7fb45f1019e0bec0f37e12bf690 [file] [log] [blame]
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +02001build/
Szymon Dompke3eb56862021-09-20 15:32:04 +02002.obj/
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +02003xyz.openbmc_project.Telemetry.service
Wludzik, Jozef2f9f9b82020-10-13 09:07:45 +02004telemetry
Wludzik, Jozef405c1e42021-01-28 16:24:27 +01005__pycache__
Cezary Zwolak4416fce2021-03-17 03:21:06 +01006*.bak
Adrian Ambrożewiczb357ed52020-01-27 17:20:38 +01007
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +02008# Created by https://www.toptal.com/developers/gitignore/api/vim,intellij,meson,visualstudiocode
9# Edit at https://www.toptal.com/developers/gitignore?templates=vim,intellij,meson,visualstudiocode
Adrian Ambrożewiczb357ed52020-01-27 17:20:38 +010010
11### Intellij ###
12# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
13# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
14
15# User-specific stuff
16.idea/**/workspace.xml
17.idea/**/tasks.xml
18.idea/**/usage.statistics.xml
19.idea/**/dictionaries
20.idea/**/shelf
21
22# Generated files
23.idea/**/contentModel.xml
24
25# Sensitive or high-churn files
26.idea/**/dataSources/
27.idea/**/dataSources.ids
28.idea/**/dataSources.local.xml
29.idea/**/sqlDataSources.xml
30.idea/**/dynamic.xml
31.idea/**/uiDesigner.xml
32.idea/**/dbnavigator.xml
33
34# Gradle
35.idea/**/gradle.xml
36.idea/**/libraries
37
38# Gradle and Maven with auto-import
39# When using Gradle or Maven with auto-import, you should exclude module files,
40# since they will be recreated, and may cause churn. Uncomment if using
41# auto-import.
42# .idea/artifacts
43# .idea/compiler.xml
44# .idea/jarRepositories.xml
45# .idea/modules.xml
46# .idea/*.iml
47# .idea/modules
48# *.iml
49# *.ipr
50
51# CMake
52cmake-build-*/
53
54# Mongo Explorer plugin
55.idea/**/mongoSettings.xml
56
57# File-based project format
58*.iws
59
60# IntelliJ
61out/
62
63# mpeltonen/sbt-idea plugin
64.idea_modules/
65
66# JIRA plugin
67atlassian-ide-plugin.xml
68
69# Cursive Clojure plugin
70.idea/replstate.xml
71
72# Crashlytics plugin (for Android Studio and IntelliJ)
73com_crashlytics_export_strings.xml
74crashlytics.properties
75crashlytics-build.properties
76fabric.properties
77
78# Editor-based Rest Client
79.idea/httpRequests
80
81# Android studio 3.1+ serialized cache file
82.idea/caches/build_file_checksums.ser
83
84### Intellij Patch ###
85# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
86
87# *.iml
88# modules.xml
89# .idea/misc.xml
90# *.ipr
91
92# Sonarlint plugin
93# https://plugins.jetbrains.com/plugin/7973-sonarlint
94.idea/**/sonarlint/
95
96# SonarQube Plugin
97# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
98.idea/**/sonarIssues.xml
99
100# Markdown Navigator plugin
101# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
102.idea/**/markdown-navigator.xml
103.idea/**/markdown-navigator-enh.xml
104.idea/**/markdown-navigator/
105
106# Cache file creation bug
107# See https://youtrack.jetbrains.com/issue/JBR-2257
108.idea/$CACHE_FILE$
109
110# CodeStream plugin
111# https://plugins.jetbrains.com/plugin/12206-codestream
112.idea/codestream.xml
113
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +0200114### Meson ###
115# subproject directories
116/subprojects/*
Szymon Dompked2620702021-06-28 12:06:15 +0200117!/subprojects/googletest.wrap
118!/subprojects/nlohmann.wrap
119!/subprojects/phosphor-logging.wrap
120!/subprojects/sdbusplus.wrap
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +0200121
122# Meson Directories
123meson-logs
124meson-private
125
126# Meson Files
127meson_benchmark_setup.dat
128meson_test_setup.dat
129sanitycheckcpp.cc # C++ specific
130sanitycheckcpp.exe # C++ specific
131
132# Ninja
133build.ninja
134.ninja_deps
135.ninja_logs
136
137# Misc
138compile_commands.json
139
Adrian Ambrożewiczb357ed52020-01-27 17:20:38 +0100140### Vim ###
141# Swap
142[._]*.s[a-v][a-z]
143!*.svg # comment out if you don't need vector files
144[._]*.sw[a-p]
145[._]s[a-rt-v][a-z]
146[._]ss[a-gi-z]
147[._]sw[a-p]
148
149# Session
150Session.vim
151Sessionx.vim
152
153# Temporary
154.netrwhist
155*~
156# Auto-generated tag files
157tags
158# Persistent undo
159[._]*.un~
160
161### VisualStudioCode ###
162.vscode/*
Adrian Ambrożewiczb357ed52020-01-27 17:20:38 +0100163*.code-workspace
164
165### VisualStudioCode Patch ###
166# Ignore all local history of files
167.history
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +0200168.ionide
Adrian Ambrożewiczb357ed52020-01-27 17:20:38 +0100169
Cezary Zwolak4416fce2021-03-17 03:21:06 +0100170### Eclipse IDE ###
171.cproject
172.project
173.settings/*
174
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +0200175# End of https://www.toptal.com/developers/gitignore/api/vim,intellij,meson,visualstudiocode