max tokens

~1975 tokens

├── .gitattributes
├── .github
    ├── actions
    │   └── setup
    │   │   └── action.yml
    └── workflows
    │   ├── main.yml
    │   └── site.yml
├── .gitignore
├── .ruby-version
├── CODE_OF_CONDUCT.md
├── CONTRIBUTING.md
├── Gemfile
├── Gemfile.lock
├── LICENSE.md
├── PULL_REQUEST_TEMPLATE.md
├── Package.resolved
├── Package.swift
├── Plugins
    └── FormatSwift
    │   ├── CommandContext.swift
    │   └── Plugin.swift
├── README.md
├── Rakefile
├── Sources
    └── AirbnbSwiftFormatTool
    │   ├── AirbnbSwiftFormatTool.swift
    │   ├── Command.swift
    │   ├── airbnb.swiftformat
    │   └── swiftlint.yml
├── Tests
    └── AirbnbSwiftFormatToolTests
    │   └── AirbnbSwiftFormatToolTests.swift
├── airbnb.swiftformat
├── resources
    └── xcode_settings.bash
├── site
    ├── .gitignore
    ├── README.md
    ├── site_content.rb
    └── src
    │   ├── _config.yml
    │   ├── _layouts
    │       └── default.html
    │   └── assets
    │       └── css
    │           ├── Cereal.woff2
    │           └── style.css
└── swiftlint.yml


/.gitattributes:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/airbnb/swift/HEAD/.gitattributes


--------------------------------------------------------------------------------
/.github/actions/setup/action.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/airbnb/swift/HEAD/.github/actions/setup/action.yml


--------------------------------------------------------------------------------
/.github/workflows/main.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/airbnb/swift/HEAD/.github/workflows/main.yml


--------------------------------------------------------------------------------
/.github/workflows/site.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/airbnb/swift/HEAD/.github/workflows/site.yml


--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .build
2 | .swiftpm
3 | .DS_Store
4 | .vscode
5 | 
6 | # The site generated by Jekyll.
7 | _site
8 | 


--------------------------------------------------------------------------------
/.ruby-version:
--------------------------------------------------------------------------------
1 | 3.2.2
2 | 


--------------------------------------------------------------------------------
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/airbnb/swift/HEAD/CODE_OF_CONDUCT.md


--------------------------------------------------------------------------------
/CONTRIBUTING.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/airbnb/swift/HEAD/CONTRIBUTING.md


--------------------------------------------------------------------------------
/Gemfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/airbnb/swift/HEAD/Gemfile


--------------------------------------------------------------------------------
/Gemfile.lock:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/airbnb/swift/HEAD/Gemfile.lock


--------------------------------------------------------------------------------
/LICENSE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/airbnb/swift/HEAD/LICENSE.md


--------------------------------------------------------------------------------
/PULL_REQUEST_TEMPLATE.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/airbnb/swift/HEAD/PULL_REQUEST_TEMPLATE.md


--------------------------------------------------------------------------------
/Package.resolved:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/airbnb/swift/HEAD/Package.resolved


--------------------------------------------------------------------------------
/Package.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/airbnb/swift/HEAD/Package.swift


--------------------------------------------------------------------------------
/Plugins/FormatSwift/CommandContext.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/airbnb/swift/HEAD/Plugins/FormatSwift/CommandContext.swift


--------------------------------------------------------------------------------
/Plugins/FormatSwift/Plugin.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/airbnb/swift/HEAD/Plugins/FormatSwift/Plugin.swift


--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/airbnb/swift/HEAD/README.md


--------------------------------------------------------------------------------
/Rakefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/airbnb/swift/HEAD/Rakefile


--------------------------------------------------------------------------------
/Sources/AirbnbSwiftFormatTool/AirbnbSwiftFormatTool.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/airbnb/swift/HEAD/Sources/AirbnbSwiftFormatTool/AirbnbSwiftFormatTool.swift


--------------------------------------------------------------------------------
/Sources/AirbnbSwiftFormatTool/Command.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/airbnb/swift/HEAD/Sources/AirbnbSwiftFormatTool/Command.swift


--------------------------------------------------------------------------------
/Sources/AirbnbSwiftFormatTool/airbnb.swiftformat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/airbnb/swift/HEAD/Sources/AirbnbSwiftFormatTool/airbnb.swiftformat


--------------------------------------------------------------------------------
/Sources/AirbnbSwiftFormatTool/swiftlint.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/airbnb/swift/HEAD/Sources/AirbnbSwiftFormatTool/swiftlint.yml


--------------------------------------------------------------------------------
/Tests/AirbnbSwiftFormatToolTests/AirbnbSwiftFormatToolTests.swift:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/airbnb/swift/HEAD/Tests/AirbnbSwiftFormatToolTests/AirbnbSwiftFormatToolTests.swift


--------------------------------------------------------------------------------
/airbnb.swiftformat:
--------------------------------------------------------------------------------
1 | Sources/AirbnbSwiftFormatTool/airbnb.swiftformat


--------------------------------------------------------------------------------
/resources/xcode_settings.bash:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/airbnb/swift/HEAD/resources/xcode_settings.bash


--------------------------------------------------------------------------------
/site/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/airbnb/swift/HEAD/site/.gitignore


--------------------------------------------------------------------------------
/site/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/airbnb/swift/HEAD/site/README.md


--------------------------------------------------------------------------------
/site/site_content.rb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/airbnb/swift/HEAD/site/site_content.rb


--------------------------------------------------------------------------------
/site/src/_config.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/airbnb/swift/HEAD/site/src/_config.yml


--------------------------------------------------------------------------------
/site/src/_layouts/default.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/airbnb/swift/HEAD/site/src/_layouts/default.html


--------------------------------------------------------------------------------
/site/src/assets/css/Cereal.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/airbnb/swift/HEAD/site/src/assets/css/Cereal.woff2


--------------------------------------------------------------------------------
/site/src/assets/css/style.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/airbnb/swift/HEAD/site/src/assets/css/style.css


--------------------------------------------------------------------------------
/swiftlint.yml:
--------------------------------------------------------------------------------
1 | Sources/AirbnbSwiftFormatTool/swiftlint.yml


--------------------------------------------------------------------------------