mirror of
https://github.com/oceanprotocol/market.git
synced 2024-11-14 17:24:51 +01:00
Matthias Kretschmann
ad864cc249
* add VS Code workspace settings * add everything required for auto-formatting on filesave * add list of suggested extensions * add pre-commit hook for `npm run format` * update code style docs * make pre-commit work * update docs Co-authored-by: mihaisc <mihai.scarlat@smartcontrol.ro>
18 lines
340 B
JSON
18 lines
340 B
JSON
{
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": true
|
|
},
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.formatOnSave": true,
|
|
"eslint.validate": [
|
|
"javascript",
|
|
"javascriptreact",
|
|
"typescript",
|
|
"typescriptreact"
|
|
],
|
|
"search.exclude": {
|
|
"**/.cache": true,
|
|
"**/public": true
|
|
}
|
|
}
|