├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── analysis_options.yaml ├── example ├── pubspec.yaml └── web │ ├── index.html │ └── main.dart ├── indent.gif ├── lib ├── indent.dart └── src │ ├── indentation.dart │ └── string_extensions.dart ├── pubspec.yaml ├── test ├── _indent_test.dart ├── decrease_indentation_by_3.unit ├── increase_indentation_by_3.unit ├── indentation_level_counts.unit ├── trim_margin_with_hashbang.unit ├── trim_margin_with_pipe.unit ├── with_0_indentation.unit └── with_3_indentation.unit └── tool └── coveralls.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roughike/indent/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roughike/indent/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roughike/indent/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roughike/indent/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roughike/indent/HEAD/README.md -------------------------------------------------------------------------------- /analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roughike/indent/HEAD/analysis_options.yaml -------------------------------------------------------------------------------- /example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roughike/indent/HEAD/example/pubspec.yaml -------------------------------------------------------------------------------- /example/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roughike/indent/HEAD/example/web/index.html -------------------------------------------------------------------------------- /example/web/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roughike/indent/HEAD/example/web/main.dart -------------------------------------------------------------------------------- /indent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roughike/indent/HEAD/indent.gif -------------------------------------------------------------------------------- /lib/indent.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roughike/indent/HEAD/lib/indent.dart -------------------------------------------------------------------------------- /lib/src/indentation.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roughike/indent/HEAD/lib/src/indentation.dart -------------------------------------------------------------------------------- /lib/src/string_extensions.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roughike/indent/HEAD/lib/src/string_extensions.dart -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roughike/indent/HEAD/pubspec.yaml -------------------------------------------------------------------------------- /test/_indent_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roughike/indent/HEAD/test/_indent_test.dart -------------------------------------------------------------------------------- /test/decrease_indentation_by_3.unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roughike/indent/HEAD/test/decrease_indentation_by_3.unit -------------------------------------------------------------------------------- /test/increase_indentation_by_3.unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roughike/indent/HEAD/test/increase_indentation_by_3.unit -------------------------------------------------------------------------------- /test/indentation_level_counts.unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roughike/indent/HEAD/test/indentation_level_counts.unit -------------------------------------------------------------------------------- /test/trim_margin_with_hashbang.unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roughike/indent/HEAD/test/trim_margin_with_hashbang.unit -------------------------------------------------------------------------------- /test/trim_margin_with_pipe.unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roughike/indent/HEAD/test/trim_margin_with_pipe.unit -------------------------------------------------------------------------------- /test/with_0_indentation.unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roughike/indent/HEAD/test/with_0_indentation.unit -------------------------------------------------------------------------------- /test/with_3_indentation.unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roughike/indent/HEAD/test/with_3_indentation.unit -------------------------------------------------------------------------------- /tool/coveralls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roughike/indent/HEAD/tool/coveralls.sh --------------------------------------------------------------------------------