Last active
February 2, 2016 03:02
-
-
Save MattHodge/35c585bfd3f59b4c6610 to your computer and use it in GitHub Desktop.
02_Blog_Win10_Development_PC_Atom.ps1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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
From Blog Post: https://www.hodgkins.net.au/powershell/setup-windows-10-for-chef-and-powershell-dsc-development/