Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 606 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 606 Bytes

music-share

A Web Application that allows users to share songs and different artists

Setting up Linting for VS Code

  • Install markdownlint extension

  • Install ESLint extension

  • Install Prettier extension

  • Follow instructions here to verify associated packages are install

  • Allow 'Fix on Save'

    • 'ctrl + shift + p'
    • type 'settings' then selection 'Open Settings (JSON)'
    • add the following to the json:
    "editor.codeActionsOnSave": {
      "source.fixAll.eslint": true
    },