Skip to content

Commit

Permalink
core: vscode config (#41)
Browse files Browse the repository at this point in the history
* core: vscode config

* core: vscode lint settings for react
  • Loading branch information
gsulloa authored Aug 28, 2020
1 parent 38406e4 commit 5fdbdce
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
/*
* File: settings.json
* Project: @inventures/react-lib
* File Created: Monday, 24th August 2020 5:14:51 pm
* Author: Gabriel Ulloa ([email protected])
* -----
* Last Modified: Friday, 28th August 2020 11:49:31 am
* Modified By: Gabriel Ulloa ([email protected])
* -----
* Copyright 2019 - 2020 Incrementa Ventures SpA. ALL RIGHTS RESERVED
* Terms and conditions defined in license.txt
* -----
* Inventures - www.inventures.cl
*/

{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"editor.formatOnSave": true,
"[javascript]": {
"editor.formatOnSave": false
},
"[typescript]": {
"editor.formatOnSave": false
},
"[typescriptreact]": {
"editor.formatOnSave": false
},
"[javascriptreact]": {
"editor.formatOnSave": false
},
"[html]": {
"editor.defaultFormatter": "vscode.html-language-features"
}
}

0 comments on commit 5fdbdce

Please sign in to comment.