Skip to content

Commit 4a18bf2

Browse files
Add a top-level .gitignore (#1383)
1 parent 09a32e4 commit 4a18bf2

File tree

67 files changed

+141
-1896
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+141
-1896
lines changed

.gitignore

Lines changed: 133 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
.DS_Store
2+
.atom/
3+
.idea
4+
.packages
5+
.pub/
6+
.pub-cache/
7+
.svn/
8+
.dart_tool/
9+
.vscode/
10+
.clangd
11+
.gdb_history
12+
.history
13+
.cxx
14+
*.iml
15+
compile_commands.json
16+
*.log
17+
*.pyc
18+
*.swp
19+
20+
# Gradle?
21+
.uuid
22+
23+
pubspec.lock
24+
25+
# iOS and macOS dependencies
26+
.build/
27+
Podfile.lock
28+
Pods/
29+
.swiftpm/
30+
.symlinks/
31+
32+
*instrumentscli*.trace
33+
*.cipd
34+
35+
# Build directories are produced when building using the Flutter CLI.
36+
build
37+
38+
# This file is produced as a back-up when web_benchmarks fails to parse a
39+
# Chrome trace.
40+
chrome-trace.json
41+
42+
# Generated files on example apps
43+
flutter_export_environment.sh
44+
.flutter-plugins*
45+
local.properties
46+
keystore.properties
47+
**/Flutter/Generated.xcconfig
48+
**/Flutter/App.framework/
49+
**/Flutter/ephemeral/
50+
**/Flutter/Flutter.podspec
51+
**/Flutter/Flutter.framework/
52+
**/Flutter/flutter_assets/
53+
**/Flutter/.last_build_id
54+
**/Pods/
55+
56+
ServiceDefinitions.json
57+
xcuserdata/
58+
DerivedData/
59+
dgph
60+
61+
generated_plugin_registrant.*
62+
GeneratedPluginRegistrant.*
63+
64+
# Gradle
65+
gradle-wrapper.jar
66+
.gradle/
67+
gradlew
68+
gradlew.bat
69+
70+
.project
71+
.classpath
72+
.settings
73+
74+
# Directory created by dartdoc.
75+
doc/api/
76+
77+
# Avoid committing generated Javascript files:
78+
*.dart.js
79+
*.info.json # Produced by the --dump-info flag.
80+
*.js # When generated by dart2js. Don't specify *.js if your
81+
# project includes source files written in JavaScript.
82+
*.js_
83+
*.js.deps
84+
*.js.map
85+
86+
# Generated shared libraries.
87+
*.so
88+
*.so.*
89+
*.dylib
90+
*.dll
91+
92+
# Files generated by tests for debugging purposes.
93+
**/test/debug_generated/*
94+
coverage/
95+
96+
## Downloaded files and build artifacts
97+
*.jar
98+
*.class
99+
*.exe
100+
101+
# Visual Studio user-specific files.
102+
*.suo
103+
*.user
104+
*.userosscache
105+
*.sln.docstates
106+
107+
# Visual Studio build-related files.
108+
x64/
109+
x86/
110+
111+
# Visual Studio cache files
112+
# files ending in .cache can be ignored
113+
*.[Cc]ache
114+
# but keep track of directories ending in .cache
115+
!*.[Cc]ache/
116+
117+
# CMake
118+
CMakeFiles/
119+
CMakeScripts/
120+
Makefile
121+
cmake_install.cmake
122+
CMakeCache.txt
123+
124+
# Android
125+
**/android/app/debug
126+
**/android/app/profile
127+
**/android/app/release
128+
129+
# Symbolication related
130+
app.*.symbols
131+
132+
# Obfuscation related
133+
app.*.map.json

pkgs/ffi/.gitignore

Lines changed: 0 additions & 3 deletions
This file was deleted.

pkgs/ffigen/.gitignore

Lines changed: 0 additions & 45 deletions
This file was deleted.

pkgs/ffigen/example/c_json/.gitignore

Lines changed: 0 additions & 11 deletions
This file was deleted.

pkgs/ffigen/example/ffinative/.gitignore

Lines changed: 0 additions & 11 deletions
This file was deleted.

pkgs/ffigen/example/libclang-example/.gitignore

Lines changed: 0 additions & 11 deletions
This file was deleted.

pkgs/ffigen/example/shared_bindings/.gitignore

Lines changed: 0 additions & 11 deletions
This file was deleted.

pkgs/ffigen/example/simple/.gitignore

Lines changed: 0 additions & 11 deletions
This file was deleted.
Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,5 @@
1-
# CMake generated files and directories.
2-
CMakeCache.txt
3-
CMakeFiles/
4-
CmakeScripts/
5-
Makefile
6-
cmake_install.cmake
7-
81
# Xcode tooling generated via `cmake -G Xcode .`.
92
cjson_library.xcodeproj/
103

114
# Xcode generated build and output directories.
125
cjson_library.build/
13-
14-
# Generated shared library files.
15-
*.dylib
16-
*.so.*
17-
*.dll

pkgs/jni/.gitignore

Lines changed: 0 additions & 32 deletions
This file was deleted.

pkgs/jni/android/.gitignore

Lines changed: 0 additions & 9 deletions
This file was deleted.

pkgs/jni/example/.gitignore

Lines changed: 0 additions & 47 deletions
This file was deleted.

pkgs/jni/example/android/.gitignore

Lines changed: 0 additions & 13 deletions
This file was deleted.

pkgs/jni/example/linux/.gitignore

Lines changed: 0 additions & 1 deletion
This file was deleted.

pkgs/jni/example/macos/.gitignore

Lines changed: 0 additions & 7 deletions
This file was deleted.

pkgs/jni/example/macos/Flutter/GeneratedPluginRegistrant.swift

Lines changed: 0 additions & 10 deletions
This file was deleted.

0 commit comments

Comments
 (0)