* ESLint rule: enforce usage of .getLoadable() + .getValue() to get atoms Co-authored-by: Matheus <[email protected]> * Merge main Co-authored-by: v1b3m <[email protected]> Co-authored-by: Matheus <[email protected]> * Fix * Refactor according to review Co-authored-by: v1b3m <[email protected]> Co-authored-by: Matheus <[email protected]> * Fix linter issue Co-authored-by: v1b3m <[email protected]> Co-authored-by: Matheus <[email protected]> * Fix linter Co-authored-by: v1b3m <[email protected]> Co-authored-by: Matheus <[email protected]> --------- Co-authored-by: gitstart-twenty <[email protected]> Co-authored-by: Matheus <[email protected]> Co-authored-by: v1b3m <[email protected]> Co-authored-by: Lucas Bordeau <[email protected]>
53 lines
1.2 KiB
JSON
53 lines
1.2 KiB
JSON
{
|
|
"editor.formatOnSave": false,
|
|
"files.eol": "auto",
|
|
"[typescript]": {
|
|
"editor.formatOnSave": false,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit",
|
|
"source.addMissingImports": "always"
|
|
}
|
|
},
|
|
"[javascript]": {
|
|
"editor.formatOnSave": false,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit",
|
|
"source.addMissingImports": "always"
|
|
}
|
|
},
|
|
"[typescriptreact]": {
|
|
"editor.formatOnSave": false,
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit",
|
|
"source.addMissingImports": "always"
|
|
}
|
|
},
|
|
"[json]": {
|
|
"editor.formatOnSave": true
|
|
},
|
|
"javascript.format.enable": false,
|
|
"typescript.format.enable": false,
|
|
"cSpell.enableFiletypes": [
|
|
"!javascript",
|
|
"!json",
|
|
"!typescript",
|
|
"!typescriptreact",
|
|
"md",
|
|
"mdx"
|
|
],
|
|
"cSpell.words": [
|
|
"twentyhq"
|
|
],
|
|
"typescript.preferences.importModuleSpecifier": "non-relative",
|
|
"[javascript][typescript][typescriptreact]": {
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.eslint": "explicit",
|
|
"source.addMissingImports": "always"
|
|
}
|
|
},
|
|
"search.exclude": {
|
|
"**/.yarn": true,
|
|
},
|
|
"eslint.debug": true
|
|
}
|