blob: b36d642bc551a4125fbab7e78ec63d10d4c0e0e6 [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/*
115!/subprojects/*.wrap
116
117# Meson Directories
118meson-logs
119meson-private
120
121# Meson Files
122meson_benchmark_setup.dat
123meson_test_setup.dat
124sanitycheckcpp.cc # C++ specific
125sanitycheckcpp.exe # C++ specific
126
127# Ninja
128build.ninja
129.ninja_deps
130.ninja_logs
131
132# Misc
133compile_commands.json
134
Adrian Ambrożewiczb357ed52020-01-27 17:20:38 +0100135### Vim ###
136# Swap
137[._]*.s[a-v][a-z]
138!*.svg # comment out if you don't need vector files
139[._]*.sw[a-p]
140[._]s[a-rt-v][a-z]
141[._]ss[a-gi-z]
142[._]sw[a-p]
143
144# Session
145Session.vim
146Sessionx.vim
147
148# Temporary
149.netrwhist
150*~
151# Auto-generated tag files
152tags
153# Persistent undo
154[._]*.un~
155
156### VisualStudioCode ###
157.vscode/*
158!.vscode/settings.json
159!.vscode/tasks.json
160!.vscode/launch.json
161!.vscode/extensions.json
162*.code-workspace
163
164### VisualStudioCode Patch ###
165# Ignore all local history of files
166.history
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +0200167.ionide
Adrian Ambrożewiczb357ed52020-01-27 17:20:38 +0100168
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +0200169# End of https://www.toptal.com/developers/gitignore/api/vim,intellij,meson,visualstudiocode