Skip to content

Latest commit

 

History

History
14 lines (14 loc) · 394 Bytes

FORMATTING.md

File metadata and controls

14 lines (14 loc) · 394 Bytes

VSCode Settings

Configured to work with ESLint and Prettier and to autoFix Prettier and ESlint errors on save.

{
    "prettier.eslintIntegration": true,
    "prettier.singleQuote": true,
    "prettier.trailingComma": "all",
    "prettier.printWidth": 100,
    "eslint.enable": true,
    "eslint.autoFixOnSave": true,
    "editor.tabSize": 2,
    "editor.detectIndentation": false
}