├── .formatter.exs ├── .github ├── FUNDING.yml └── workflows │ ├── main.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── VERSION ├── coveralls.json ├── guides └── images │ ├── logo.png │ ├── logo.svg │ ├── logo_name.png │ └── your_logo_here.png ├── lib ├── sql_fmt.ex └── sql_fmt │ ├── format_options.ex │ ├── formatter.ex │ ├── helpers.ex │ └── native.ex ├── mix.exs ├── mix.lock ├── native └── sql_fmt_nif │ ├── .cargo │ └── config.toml │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── Cross.toml │ └── src │ └── lib.rs └── test ├── sql_fmt ├── formatter_test.exs └── helpers_test.exs ├── sql_fmt_test.exs └── test_helper.exs /.formatter.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/sql_fmt/HEAD/.formatter.exs -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [akoutmos] 2 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/sql_fmt/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/sql_fmt/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/sql_fmt/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/sql_fmt/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/sql_fmt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/sql_fmt/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.4.0 2 | -------------------------------------------------------------------------------- /coveralls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/sql_fmt/HEAD/coveralls.json -------------------------------------------------------------------------------- /guides/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/sql_fmt/HEAD/guides/images/logo.png -------------------------------------------------------------------------------- /guides/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/sql_fmt/HEAD/guides/images/logo.svg -------------------------------------------------------------------------------- /guides/images/logo_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/sql_fmt/HEAD/guides/images/logo_name.png -------------------------------------------------------------------------------- /guides/images/your_logo_here.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/sql_fmt/HEAD/guides/images/your_logo_here.png -------------------------------------------------------------------------------- /lib/sql_fmt.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/sql_fmt/HEAD/lib/sql_fmt.ex -------------------------------------------------------------------------------- /lib/sql_fmt/format_options.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/sql_fmt/HEAD/lib/sql_fmt/format_options.ex -------------------------------------------------------------------------------- /lib/sql_fmt/formatter.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/sql_fmt/HEAD/lib/sql_fmt/formatter.ex -------------------------------------------------------------------------------- /lib/sql_fmt/helpers.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/sql_fmt/HEAD/lib/sql_fmt/helpers.ex -------------------------------------------------------------------------------- /lib/sql_fmt/native.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/sql_fmt/HEAD/lib/sql_fmt/native.ex -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/sql_fmt/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/sql_fmt/HEAD/mix.lock -------------------------------------------------------------------------------- /native/sql_fmt_nif/.cargo/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/sql_fmt/HEAD/native/sql_fmt_nif/.cargo/config.toml -------------------------------------------------------------------------------- /native/sql_fmt_nif/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /native/sql_fmt_nif/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/sql_fmt/HEAD/native/sql_fmt_nif/Cargo.lock -------------------------------------------------------------------------------- /native/sql_fmt_nif/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/sql_fmt/HEAD/native/sql_fmt_nif/Cargo.toml -------------------------------------------------------------------------------- /native/sql_fmt_nif/Cross.toml: -------------------------------------------------------------------------------- 1 | [build.env] 2 | passthrough = [ 3 | "RUSTLER_NIF_VERSION" 4 | ] 5 | -------------------------------------------------------------------------------- /native/sql_fmt_nif/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/sql_fmt/HEAD/native/sql_fmt_nif/src/lib.rs -------------------------------------------------------------------------------- /test/sql_fmt/formatter_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/sql_fmt/HEAD/test/sql_fmt/formatter_test.exs -------------------------------------------------------------------------------- /test/sql_fmt/helpers_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/sql_fmt/HEAD/test/sql_fmt/helpers_test.exs -------------------------------------------------------------------------------- /test/sql_fmt_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akoutmos/sql_fmt/HEAD/test/sql_fmt_test.exs -------------------------------------------------------------------------------- /test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | --------------------------------------------------------------------------------