importsort-d

Sort and format imports in DLang
Log | Files | Refs | README

commit 3e630a7b588fb962c911b2203b25dbfefbc3d640
parent 473800b18209ef33b1ac726b316daf5d18a4ca00
Author: Friedel Schoen <[email protected]>
Date:   Sun, 23 Oct 2022 16:38:19 +0200

setting up page

Diffstat:
M_config.yml | 6+++++-
A_layouts/head_custom.html | 9+++++++++
Aadd-to-editor.md | 2++
Achangelog.md | 18++++++++++++++++++
Mindex.md | 21+--------------------
5 files changed, 35 insertions(+), 21 deletions(-)

diff --git a/_config.yml b/_config.yml @@ -3,5 +3,9 @@ plugins: - jekyll-remote-theme show_downloads: true -title: importsort-d! +description: "" logo: /assets/importsort-d.png +github: + zip_url: https://github.com/friedelschoen/importsort-d/zipball/master + tar_url: https://github.com/friedelschoen/importsort-d/tarball/master + owner_name: Friedel Sch&ouml;n diff --git a/_layouts/head_custom.html b/_layouts/head_custom.html @@ -0,0 +1,8 @@ +<script type="text/javascript"> + document.onready = function () { + var header = document.getElementsByTagName("header")[0]; + + header.innerHTML += "<p><a href='changelog.md'>Changelog</a></p>"; + header.innerHTML += "<p><a href='add-to-editor.md'>Add to your Editor</a></p>"; + } +</script> +\ No newline at end of file diff --git a/add-to-editor.md b/add-to-editor.md @@ -0,0 +1 @@ +# Comming Soon! +\ No newline at end of file diff --git a/changelog.md b/changelog.md @@ -0,0 +1,18 @@ +# Changelog + +## `v0.1.0` +- the very first version +- not a lot is implemented + +## `v0.2.0` +- added `--recursive` (see above) +- option `--keep` becomes disabling formatting +- option `--inline` doen't copy the original but creates a `*.new` and renames it afterwards +- option `--original` becomes `--binding` and sorts by original by default +- refactoring code + +## `v0.3.0` +- added `--merge` (see above) + +## `v0.3.1` +- added documentation for contributers (or people who wan't to see my code) diff --git a/index.md b/index.md @@ -1,7 +1,5 @@ # Sort Imports for [D](https://dlang.org/) -<img src="assets/importsort-d.png" alt="logo" width="256" /> - `sortimport-d` can sort your dozens of `import`'s in a `.d` file (no matter where) ## Installation @@ -62,24 +60,7 @@ $ importsort-d [-h] [-v] [-r] [-i] [-o <out>] [-k] [-a] [-r] <input...> - [ ] support multiple imports in one line (demilited by `;`) - [ ] stripping unused imports (maybe) -## Changelog - -### `v0.1.0` -- the very first version -- not a lot is implemented - -### `v0.2.0` -- added `--recursive` (see above) -- option `--keep` becomes disabling formatting -- option `--inline` doen't copy the original but creates a `*.new` and renames it afterwards -- option `--original` becomes `--binding` and sorts by original by default -- refactoring code - -### `v0.3.0` -- added `--merge` (see above) - -### `v0.3.1` -- added documentation for contributers (or people who wan't to see my code) +> you got some ideas? Issue them! ## License