Skip to content
This repository has been archived by the owner on Jul 17, 2023. It is now read-only.

Commit

Permalink
chore: add extra configuration for VS Code
Browse files Browse the repository at this point in the history
  • Loading branch information
robertrossmann committed Aug 5, 2019
1 parent 7b8aeb5 commit c84305d
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .vscode/settings.json
Expand Up @@ -5,26 +5,27 @@
"**/.DS_Store": true,
"{packages,test}/**/*.js": true,
"**/*.log": true,
"**/node_modules": true
"**/node_modules": true,
".nyc_output": true,
"coverage": true,
".eslintcache": true,
},
// Custom Application window title 鉂わ笍
"window.title": "Atlas.js",

// These should be set up through .editorconfig, but just in case...
"editor.wordWrapColumn": 100,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,

// Disable built-in JS validator due to unsupported language syntax being used
"javascript.validate.enable": false,
"javascript.format.enable": false,
"typescript.format.enable": false,

// Enable ESLint and its auto-fixer
"eslint.enable": true,
"eslint.autoFixOnSave": true,
"eslint.options": {
"reportUnusedDisableDirectives": true
}
},
"mochaExplorer.files": ""
}

0 comments on commit c84305d

Please sign in to comment.