File tree Expand file tree Collapse file tree 15 files changed +122
-51
lines changed Expand file tree Collapse file tree 15 files changed +122
-51
lines changed Original file line number Diff line number Diff line change 1+ # gitignore template for Alteryx Designer
2+ # website: https://www.alteryx.com/
3+ # website: https://help.alteryx.com/current/designer/alteryx-file-types
4+
5+ # Alteryx Data Files
6+ *.yxdb
7+ *.cydb
8+ *.cyidx
9+ *.rptx
10+ *.vvf
11+ *.aws
12+
13+ # Alteryx Special Files
14+ *.yxwv
15+ *.yxft
16+ *.yxbe
17+ *.bak
18+ *.pcxml
19+ *.log
20+ *.bin
21+ *.yxlang
22+ CASS.ini
23+
24+ # Alteryx License Files
25+ *.yxlc
26+ *.slc
27+ *.cylc
28+ *.alc
29+ *.gzlc
30+
31+ ## gitignore reference sites
32+ # https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository#Ignoring-Files
33+ # https://git-scm.com/docs/gitignore
34+ # https://help.github.com/articles/ignoring-files/
35+
36+ ## Useful knowledge from stackoverflow
37+ # Even if you haven't tracked the files so far, git seems to be able to "know" about them even after you add them to .gitignore.
38+ # WARNING: First commit your current changes, or you will lose them.
39+ # Then run the following commands from the top folder of your git repo:
40+ # git rm -r --cached .
41+ # git add .
42+ # git commit -m "fixed untracked files"
43+
44+ # author: Kacper Ksieski
Original file line number Diff line number Diff line change 1414*.lzma
1515*.cab
1616*.xar
17+ *.zst
18+ *.tzst
1719
1820# Packing-only formats
1921*.iso
Original file line number Diff line number Diff line change 1+ # generated files
2+ target/
3+ generated/
4+
5+ # dependencies
6+ Dependencies.toml
7+
8+ # config files
9+ Config.toml
10+ # the config files used for testing, Uncomment the following line if you want to commit the test config files
11+ #!**/tests/Config.toml
Original file line number Diff line number Diff line change @@ -9,3 +9,4 @@ install_manifest.txt
99compile_commands.json
1010CTestTestfile.cmake
1111_deps
12+ CMakeUserPresets.json
Original file line number Diff line number Diff line change 2626#*.obj
2727#
2828
29+ # Default Delphi compiler directories
30+ # Content of this directories are generated with each Compile/Construct of a project.
31+ # Most of the time, files here have not there place in a code repository.
32+ #Win32/
33+ #Win64/
34+ #OSX64/
35+ #OSXARM64/
36+ #Android/
37+ #Android64/
38+ #iOSDevice64/
39+ #Linux64/
40+
2941# Delphi compiler-generated binaries (safe to delete)
3042*.exe
3143*.dll
Original file line number Diff line number Diff line change 1+ # This .gitignore is appropriate for repositories deployed to GitHub Pages and using
2+ # a Gemfile as specified at https://github.com/github/pages-gem#conventional
3+
4+ # Basic Jekyll gitignores (synchronize to Jekyll.gitignore)
5+ _site/
6+ .sass-cache/
7+ .jekyll-cache/
8+ .jekyll-metadata
9+
10+ # Additional Ruby/bundler ignore for when you run: bundle install
11+ /vendor
12+
13+ # Specific ignore for GitHub Pages
14+ # GitHub Pages will always use its own deployed version of pages-gem
15+ # This means GitHub Pages will NOT use your Gemfile.lock and therefore it is
16+ # counterproductive to check this file into the repository.
17+ # Details at https://github.com/github/pages-gem/issues/768
18+ Gemfile.lock
Original file line number Diff line number Diff line change 2020# Go workspace file
2121go.work
2222go.work.sum
23+
24+ # env file
25+ .env
Original file line number Diff line number Diff line change 55## User settings
66xcuserdata/
77
8- ## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
9- *.xcscmblueprint
10- *.xccheckout
11-
12- ## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
13- build/
14- DerivedData/
15- *.moved-aside
16- *.pbxuser
17- !default.pbxuser
18- *.mode1v3
19- !default.mode1v3
20- *.mode2v3
21- !default.mode2v3
22- *.perspectivev3
23- !default.perspectivev3
24-
258## Obj-C/Swift specific
269*.hmap
2710
Original file line number Diff line number Diff line change @@ -12,3 +12,10 @@ Cargo.lock
1212
1313# MSVC Windows builds of rustc generate these, which store debugging information
1414*.pdb
15+
16+ # RustRover
17+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
18+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
19+ # and can be added to the global gitignore or merged into this file. For a more nuclear
20+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
21+ #.idea/
Original file line number Diff line number Diff line change 55## User settings
66xcuserdata/
77
8- ## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
9- *.xcscmblueprint
10- *.xccheckout
11-
12- ## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
13- build/
14- DerivedData/
15- *.moved-aside
16- *.pbxuser
17- !default.pbxuser
18- *.mode1v3
19- !default.mode1v3
20- *.mode2v3
21- !default.mode2v3
22- *.perspectivev3
23- !default.perspectivev3
24-
258## Obj-C/Swift specific
269*.hmap
2710
@@ -66,10 +49,6 @@ playground.xcworkspace
6649
6750Carthage/Build/
6851
69- # Accio dependency management
70- Dependencies/
71- .accio/
72-
7352# fastlane
7453#
7554# It is recommended to not store the screenshots in the git repo.
@@ -81,10 +60,3 @@ fastlane/report.xml
8160fastlane/Preview.html
8261fastlane/screenshots/**/*.png
8362fastlane/test_output
84-
85- # Code Injection
86- #
87- # After new code Injection tools there's a generated folder /iOSInjectionProject
88- # https://github.com/johnno1962/injectionforxcode
89-
90- iOSInjectionProject/
You can’t perform that action at this time.
0 commit comments