diff --git a/.gitignore b/.gitignore index 4a7f73a..43345b6 100644 --- a/.gitignore +++ b/.gitignore @@ -13,6 +13,9 @@ node_modules logs *.log +# IDEs +.vscode/settings.json + # Misc .DS_Store .fleet diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index b1b3da2..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "editor.codeActionsOnSave": { - "source.fixAll.eslint": "explicit", - "source.fixAll.stylelint": "explicit" - }, - "editor.defaultFormatter": "esbenp.prettier-vscode", - "[javascript]": { "editor.defaultFormatter": "dbaeumer.vscode-eslint" }, - "[typescript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, - "[vue]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }, - "editor.fontFamily": "'Fira Code', Menlo, Monaco, 'Courier New', monospace", - "editor.fontSize": 14, - "editor.cursorBlinking": "expand", - "editor.cursorWidth": 4, - "editor.cursorSmoothCaretAnimation": "on", - "window.zoomLevel": 1, - "todohighlight.keywords": [ - "DEBUG:", - "REVIEW:", - { - "text": "NOTE:", - "color": "#ff0000", - "backgroundColor": "yellow", - "overviewRulerColor": "grey" - }, - { - "text": "HACK:", - "color": "#000", - "isWholeLine": false - }, - { - "text": "TODO:", - "color": "red", - "border": "1px solid red", - "borderRadius": "2px", //NOTE: using borderRadius along with `border` or you will see nothing change - "backgroundColor": "rgba(0,0,0,.2)" - //other styling properties goes here ... - } - ], - "typescript.validate.enable": true, - "eslint.debug": true, - "editor.formatOnPaste": false, - "editor.formatOnSave": true, - "editor.formatOnType": false, - "eslint.enable": true, - "eslint.validate": ["javascript", "typescript", "vue"], - "workbench.colorCustomizations": { - "editorCursor.foreground": "#f0db4f", - "terminalCursor.foreground": "#f0db4f" - }, - "javascript.updateImportsOnFileMove.enabled": "always", - "search.exclude": { - "**/node_modules": true, - "**/.history": true, - "**/.nuxt": true, - "**/.output": true, - "**/.storybook": true, - "**/build": true, - "**/coverage": true - }, - "files.exclude": { - "**/*.log": true, - "**/*.log*": true, - "**/dist": true - }, - "files.associations": { - "*.config.js": "javascript", - "*.spec.js": "javascript", - "*.vue": "vue", - "*.ts": "typescript" - } -}