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