Exercism solutions
If you are new to exercism, you can get started with this intro.
language | code style & linter | command |
---|---|---|
coffeescript | coffeelint | yarn lint |
ecmascript | airbnb style guide | cd <exercise> && yarn lint |
elm | elm-format | elm-format . |
go | gofmt | go fmt . |
java | google-java-format | java -jar google-java-format-1.8-all-deps.jar -r ./**/src/main/java/*.java -r |
javascript | prettier | yarn lint |
python | pep 8 | pycodestyle . or autopep8 --in-place --aggressive --aggressive --recursive . |
ruby | rubocop | rubocop . |
rust | rustfmt | cargo fmt --all |
typescript | tslint | cd <exercise> && yarn lint |
I'd appreciate any feedback via issues.