Files
SCM-Manager/scm-ui
Sebastian Sdorra ffd1daba52 There is no need for a class component here
We should use function component as much as possible, because their are easier to read and less confusing.
2020-10-15 11:32:27 +02:00
..
2020-10-14 16:26:25 +02:00
2020-10-14 12:38:13 +00:00
2018-07-25 08:57:38 +02:00

scm-ui

VSCode Plugins

  • EditorConfig for VS Code
  • Flow Language Support
  • Prettier - Code formatter
  • Project Snippets
  • Debugger for Chrome
code --install-extension EditorConfig.EditorConfig
code --install-extension flowtype.flow-for-vscode
code --install-extension esbenp.prettier-vscode
code --install-extension rebornix.project-snippets

# debugging with chrome browser
code --install-extension msjsdiag.debugger-for-chrome

Install pre-commit hook

echo "" >> .hg/hgrc
echo "[hooks]" >> .hg/hgrc
echo "pre-commit = cd scm-ui && yarn run pre-commit" >> .hg/hgrc