readme: Ordered the tools table better.
This commit is contained in:
parent
5f6c2b58bf
commit
6f58c1b9b0
2 changed files with 16 additions and 16 deletions
16
README.md
16
README.md
|
|
@ -31,27 +31,27 @@ Extensions(93) | Tools(61)
|
|||
.pod .pod6 | [perldoc](http://perldoc.perl.org/)
|
||||
.java | [uncrustify](https://github.com/uncrustify/uncrustify)
|
||||
.c .h | [c_syntax_gcc](https://gcc.gnu.org/) • [splint](http://www.splint.org/) • [uncrustify](https://github.com/uncrustify/uncrustify) • [cppcheck](http://sourceforge.net/p/cppcheck/wiki/Home/)
|
||||
.o | [objdump_headers](https://en.wikipedia.org/wiki/Objdump) • [objdump_disassemble](https://en.wikipedia.org/wiki/Objdump) • [readelf](https://en.wikipedia.org/wiki/Objdump)
|
||||
.cc .cpp .hpp | [cpp_syntax_gcc](https://gcc.gnu.org/) • bcpp • [uncrustify](https://github.com/uncrustify/uncrustify) • [cppcheck](http://sourceforge.net/p/cppcheck/wiki/Home/)
|
||||
.rb | [ruby_syntax](http://www.ruby-lang.org/)
|
||||
.lua | [lua_syntax](http://www.lua.org) • [lua_check](https://github.com/mpeterv/luacheck)
|
||||
.js | [js_syntax](http://nodejs.org/)
|
||||
.php | [php7_syntax](https://en.wikipedia.org/wiki/PHP)
|
||||
.go | [gofmt](https://golang.org) • [go_vet](https://golang.org) • [golint](https://github.com/golang/lint) • [godoc](http://golang.org/x/tools)
|
||||
.bash .sh .dash .ksh | [shellcheck](http://hackage.haskell.org/package/ShellCheck)
|
||||
.pdf | [pdf2txt](http://www.unixuser.org/~euske/python/pdfminer/)
|
||||
.html .htm | [html_syntax](http://www.html-tidy.org/) • [tidy](http://www.html-tidy.org/) • [html2text](http://www.mbayer.de/html2text/) • [pandoc](https://pandoc.org/)
|
||||
.php | [php7_syntax](https://en.wikipedia.org/wiki/PHP)
|
||||
.yaml .yml | [yamllint](https://github.com/adrienverge/yamllint)
|
||||
.md .epub .docx .odt .rst | [pandoc](https://pandoc.org/)
|
||||
.zip .jar .apk .egg .whl | [zipinfo](http://www.info-zip.org/UnZip.html)
|
||||
.tar.gz .tgz | [tar_gz](http://www.gnu.org/software/tar/manual/tar.html)
|
||||
.tar.bz2 | [tar_bz2](http://www.gnu.org/software/tar/manual/tar.html)
|
||||
.rar | [unrar](http://www.rarlabs.com/)
|
||||
.7z | [7z](http://p7zip.sourceforge.net/)
|
||||
.xz | [unxz](http://tukaani.org/xz/)
|
||||
.a | [ar](https://en.wikipedia.org/wiki/Ar_(Unix)) • [nm](https://linux.die.net/man/1/nm)
|
||||
.o | [objdump_headers](https://en.wikipedia.org/wiki/Objdump) • [objdump_disassemble](https://en.wikipedia.org/wiki/Objdump) • [readelf](https://en.wikipedia.org/wiki/Objdump)
|
||||
.so | [nm](https://linux.die.net/man/1/nm)
|
||||
.deb | [dpkg_contents](https://wiki.debian.org/Teams/Dpkg) • [dpkg_info](https://wiki.debian.org/Teams/Dpkg)
|
||||
.rpm | [rpm](http://rpm.org/)
|
||||
.a | [ar](https://en.wikipedia.org/wiki/Ar_(Unix)) • [nm](https://linux.die.net/man/1/nm)
|
||||
.so | [nm](https://linux.die.net/man/1/nm)
|
||||
.png .jpg .gif .bmp .ppm .tiff .tga | [identify](http://www.imagemagick.org/script/identify.php) • [pil](http://python-pillow.github.io/) • [pil_half](http://python-pillow.github.io/)
|
||||
.bash .sh .dash .ksh | [shellcheck](http://hackage.haskell.org/package/ShellCheck)
|
||||
.go | [gofmt](https://golang.org) • [go_vet](https://golang.org) • [golint](https://github.com/golang/lint) • [godoc](http://golang.org/x/tools)
|
||||
.yaml .yml | [yamllint](https://github.com/adrienverge/yamllint)
|
||||
.md .epub .docx .odt .rst | [pandoc](https://pandoc.org/)
|
||||
.mkv .mka .mks .ogg .ogm .avi .wav .mpeg .mpg .vob .mp4 .mpgv .mpv .m1v .m2v .mp2 .mp3 .asf .wma .wmv .qt .mov .rm .rmvb .ra .ifo .ac3 .dts .aac .flac .aiff .aifc .au .iff .flv .srt .ssa .ass .sami | [mediainfo](https://mediaarea.net/MediaInfo)
|
||||
|
|
|
|||
|
|
@ -12,31 +12,31 @@ tools_for_extensions = [
|
|||
# [["p6", "pm6"], ["perl6_syntax", "perldoc"]],
|
||||
[["pod", "pod6"], ["perldoc"]], [["java"], ["uncrustify"]],
|
||||
[["c", "h"], ["c_syntax_gcc", "splint", "uncrustify", "cppcheck"]],
|
||||
[["o"], ["objdump_headers", "objdump_disassemble", "readelf"]],
|
||||
[["cc", "cpp", "hpp"], ["cpp_syntax_gcc", "bcpp", "uncrustify",
|
||||
"cppcheck"]],
|
||||
[["rb"], ["ruby_syntax"]],
|
||||
[["lua"], ["lua_syntax", "lua_check"]],
|
||||
[["js"], ["js_syntax"]],
|
||||
[["php"], ["php7_syntax"]],
|
||||
[["go"], ["gofmt", "go_vet", "golint", "godoc"]],
|
||||
[["bash", "sh", "dash", "ksh"], ["shellcheck"]],
|
||||
[["pdf"], ["pdf2txt"]],
|
||||
[["html", "htm"], ["html_syntax", "tidy", "html2text", "pandoc"]],
|
||||
[["php"], ["php7_syntax"]],
|
||||
[["yaml", "yml"], ["yamllint"]],
|
||||
[["md", "epub", "docx", "odt", "rst"], ["pandoc"]],
|
||||
[["zip", "jar", "apk", "egg", "whl"], ["zipinfo"]],
|
||||
[["tar.gz", "tgz"],["tar_gz"]],
|
||||
[["tar.bz2"], ["tar_bz2"]],
|
||||
[["rar"], ["unrar"]],
|
||||
[["7z"], ["7z"]],
|
||||
[["xz"], ["unxz"]],
|
||||
[["a"], ["ar", "nm"]],
|
||||
[["o"], ["objdump_headers", "objdump_disassemble", "readelf"]],
|
||||
[["so"], ["nm"]],
|
||||
[["deb"], ["dpkg_contents", "dpkg_info"]],
|
||||
[["rpm"], ["rpm"]],
|
||||
[["a"], ["ar", "nm"]],
|
||||
[["so"], ["nm"]],
|
||||
[["png", "jpg", "gif", "bmp", "ppm", "tiff", "tga"], ["identify", "pil",
|
||||
"pil_half"]],
|
||||
[["bash", "sh", "dash", "ksh"], ["shellcheck"]],
|
||||
[["go"], ["gofmt", "go_vet", "golint", "godoc"]],
|
||||
[["yaml", "yml"], ["yamllint"]],
|
||||
[["md", "epub", "docx", "odt", "rst"], ["pandoc"]],
|
||||
[["mkv", "mka", "mks", "ogg", "ogm", "avi", "wav", "mpeg", "mpg", "vob",
|
||||
"mp4", "mpgv", "mpv", "m1v", "m2v", "mp2", "mp3", "asf", "wma", "wmv",
|
||||
"qt", "mov", "rm", "rmvb", "ra", "ifo", "ac3", "dts", "aac", "flac",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue