Skip to content

Instantly share code, notes, and snippets.

@MattHodge
Last active February 2, 2016 03:02
Show Gist options
  • Save MattHodge/35c585bfd3f59b4c6610 to your computer and use it in GitHub Desktop.
Save MattHodge/35c585bfd3f59b4c6610 to your computer and use it in GitHub Desktop.
02_Blog_Win10_Development_PC_Atom.ps1
# Linter to validate the code as you are typing
apm install linter
# Install rubocop gem
gem install rubocop
# Linter for ruby
apm install linter-rubocop
# Rubocop auto corrector
apm install rubocop-auto-correct
# Create a rubocop.yml configuration file to ignore warnings for line endings. Details here https://github.com/bbatsov/rubocop/blob/master/README.md
Set-Content -Path ~/.rubocop.yml -Value 'Metrics/LineLength:',' Enabled: false'
# Useful for removing Windows line endings
apm install line-ending-converter
# Gives a view of your entire document when it is open in atom
apm install minimap
# monokai theme for atom
apm install monokai
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment