Last active
November 19, 2018 13:54
-
-
Save daniel08s/b4b48cb584b5ab71726a17edcdf4afe1 to your computer and use it in GitHub Desktop.
This file contains 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
{ | |
// Uses the legacy module resolving. | |
"eslint._legacyModuleResolve": false, | |
// Always show the ESlint status bar item. | |
"eslint.alwaysShowStatus": true, | |
// Turns auto fix on save on or off. | |
"eslint.autoFixOnSave": false, | |
// Controls whether eslint is enabled for JavaScript files or not. | |
"eslint.enable": true, | |
// A path added to NODE_PATH when resolving the eslint module. | |
"eslint.nodePath": null, | |
// The eslint options object to provide args normally passed to eslint when executed from a command line (see http://eslint.org/docs/developer-guide/nodejs-api#cliengine). | |
// "eslint.options": {"eslint.options": { "configFile": "C:/Users/Daniel/Documents/BuildingProductsWithJS/server/.eslintrc.js" }}, | |
// The package manager you use to install node modules. | |
"eslint.packageManager": "npm", | |
// Run the linter on save (onSave) or on type (onType) | |
"eslint.run": "onType", | |
// Traces the communication between VSCode and the eslint linter service. | |
"eslint.trace.server": "off", | |
// An array of language ids which should be validated by ESLint | |
"eslint.validate": [ | |
"javascript", | |
"javascriptreact" | |
], | |
// | |
"eslint.workingDirectories": [], | |
"workbench.startupEditor": "newUntitledFile", | |
"workbench.colorTheme": "Dracula", | |
"workbench.iconTheme": "vscode-great-icons", | |
"editor.tabSize": 2, | |
"terminal.integrated.shell.windows": "C:\\WINDOWS\\Sysnative\\bash.exe", | |
"editor.fontFamily": "'Fira Code', Consolas, monospace", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 13.3, | |
"editor.lineHeight": 22, | |
"editor.foldingStrategy": "indentation", | |
"window.zoomLevel": 0, | |
"[javascriptreact]": {} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment