1+ # Created by https://www.toptal.com/developers/gitignore/api/dart,intellij,macos,windows
2+ # Edit at https://www.toptal.com/developers/gitignore?templates=dart,intellij,macos,windows
3+
4+ # ## Dart ###
5+ # See https://www.dartlang.org/guides/libraries/private-files
6+
17# Files and directories created by pub
28.dart_tool /
39.packages
4-
5- # Omit commiting pubspec.lock for library packages:
6- # https://dart.dev/guides/libraries/private-files#pubspeclock
7- pubspec.lock
8-
9- # Conventional directory for build outputs
1010build /
11+ # If you're building an application, you may want to check-in your pubspec.lock
12+ pubspec.lock
1113
1214# Directory created by dartdoc
15+ # If you don't generate documentation locally you can remove this line.
1316doc /api /
17+
18+ # Avoid committing generated Javascript files:
19+ * .dart.js
20+ * .info.json # Produced by the --dump-info flag.
21+ * .js # When generated by dart2js. Don't specify * .js if your
22+ # project includes source files written in JavaScript.
23+ * .js_
24+ * .js.deps
25+ * .js.map
26+
27+ # ## Intellij ###
28+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
29+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
30+
31+ # User-specific stuff
32+ .idea /** /workspace.xml
33+ .idea /** /tasks.xml
34+ .idea /** /usage.statistics.xml
35+ .idea /** /dictionaries
36+ .idea /** /shelf
37+
38+ # Generated files
39+ .idea /** /contentModel.xml
40+
41+ # Sensitive or high-churn files
42+ .idea /** /dataSources /
43+ .idea /** /dataSources.ids
44+ .idea /** /dataSources.local.xml
45+ .idea /** /sqlDataSources.xml
46+ .idea /** /dynamic.xml
47+ .idea /** /uiDesigner.xml
48+ .idea /** /dbnavigator.xml
49+
50+ # Gradle
51+ .idea /** /gradle.xml
52+ .idea /** /libraries
53+
54+ # Gradle and Maven with auto-import
55+ # When using Gradle or Maven with auto-import, you should exclude module files,
56+ # since they will be recreated, and may cause churn. Uncomment if using
57+ # auto-import.
58+ # .idea/artifacts
59+ # .idea/compiler.xml
60+ # .idea/jarRepositories.xml
61+ # .idea/modules.xml
62+ # .idea/*.iml
63+ # .idea/modules
64+ # *.iml
65+ # *.ipr
66+
67+ # CMake
68+ cmake-build- * /
69+
70+ # Mongo Explorer plugin
71+ .idea /** /mongoSettings.xml
72+
73+ # File-based project format
74+ * .iws
75+
76+ # IntelliJ
77+ out /
78+
79+ # mpeltonen/sbt-idea plugin
80+ .idea_modules /
81+
82+ # JIRA plugin
83+ atlassian-ide-plugin.xml
84+
85+ # Cursive Clojure plugin
86+ .idea /replstate.xml
87+
88+ # Crashlytics plugin (for Android Studio and IntelliJ)
89+ com_crashlytics_export_strings.xml
90+ crashlytics.properties
91+ crashlytics-build.properties
92+ fabric.properties
93+
94+ # Editor-based Rest Client
95+ .idea /httpRequests
96+
97+ # Android studio 3.1+ serialized cache file
98+ .idea /caches /build_file_checksums.ser
99+
100+ # ## Intellij Patch ###
101+ # Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
102+
103+ # *.iml
104+ # modules.xml
105+ # .idea/misc.xml
106+ # *.ipr
107+
108+ # Sonarlint plugin
109+ # https://plugins.jetbrains.com/plugin/7973-sonarlint
110+ .idea /** /sonarlint /
111+
112+ # SonarQube Plugin
113+ # https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
114+ .idea /** /sonarIssues.xml
115+
116+ # Markdown Navigator plugin
117+ # https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
118+ .idea /** /markdown-navigator.xml
119+ .idea /** /markdown-navigator-enh.xml
120+ .idea /** /markdown-navigator /
121+
122+ # Cache file creation bug
123+ # See https://youtrack.jetbrains.com/issue/JBR-2257
124+ .idea /$CACHE_FILE$
125+
126+ # CodeStream plugin
127+ # https://plugins.jetbrains.com/plugin/12206-codestream
128+ .idea /codestream.xml
129+
130+ # ## macOS ###
131+ # General
132+ .DS_Store
133+ .AppleDouble
134+ .LSOverride
135+
136+ # Icon must end with two \r
137+ Icon
138+
139+
140+ # Thumbnails
141+ ._ *
142+
143+ # Files that might appear in the root of a volume
144+ .DocumentRevisions-V100
145+ .fseventsd
146+ .Spotlight-V100
147+ .TemporaryItems
148+ .Trashes
149+ .VolumeIcon.icns
150+ .com.apple.timemachine.donotpresent
151+
152+ # Directories potentially created on remote AFP share
153+ .AppleDB
154+ .AppleDesktop
155+ Network Trash Folder
156+ Temporary Items
157+ .apdisk
158+
159+ # ## Windows ###
160+ # Windows thumbnail cache files
161+ Thumbs.db
162+ Thumbs.db:encryptable
163+ ehthumbs.db
164+ ehthumbs_vista.db
165+
166+ # Dump file
167+ * .stackdump
168+
169+ # Folder config file
170+ [Dd ]esktop.ini
171+
172+ # Recycle Bin used on file shares
173+ $RECYCLE.BIN /
174+
175+ # Windows Installer files
176+ * .cab
177+ * .msi
178+ * .msix
179+ * .msm
180+ * .msp
181+
182+ # Windows shortcuts
183+ * .lnk
184+
185+ # End of https://www.toptal.com/developers/gitignore/api/dart,intellij,macos,windows
0 commit comments