├── .github └── workflows │ └── CI.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE.md ├── README.md ├── fixture ├── mixed-space.js ├── mixed-tab.js ├── space.js ├── tab-four.js ├── tab.js └── vendor-prefixed-css.css └── src └── lib.rs /.github/workflows/CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanpenner/detect-indent-rs/HEAD/.github/workflows/CI.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | /target/ 3 | **/*.rs.bk 4 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanpenner/detect-indent-rs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanpenner/detect-indent-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanpenner/detect-indent-rs/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanpenner/detect-indent-rs/HEAD/README.md -------------------------------------------------------------------------------- /fixture/mixed-space.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanpenner/detect-indent-rs/HEAD/fixture/mixed-space.js -------------------------------------------------------------------------------- /fixture/mixed-tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanpenner/detect-indent-rs/HEAD/fixture/mixed-tab.js -------------------------------------------------------------------------------- /fixture/space.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanpenner/detect-indent-rs/HEAD/fixture/space.js -------------------------------------------------------------------------------- /fixture/tab-four.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanpenner/detect-indent-rs/HEAD/fixture/tab-four.js -------------------------------------------------------------------------------- /fixture/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanpenner/detect-indent-rs/HEAD/fixture/tab.js -------------------------------------------------------------------------------- /fixture/vendor-prefixed-css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanpenner/detect-indent-rs/HEAD/fixture/vendor-prefixed-css.css -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanpenner/detect-indent-rs/HEAD/src/lib.rs --------------------------------------------------------------------------------