aboutsummaryrefslogtreecommitdiffstats
path: root/.vscode/settings.json
blob: 81b53b5bfb64e806f66b5a5c2a7cb7fde9945a2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
    "editor.codeActionsOnSave": {
      "source.fixAll.eslint": "explicit",
      "source.organizeImports": "explicit"
    },
    "editor.formatOnSave": true,
    "editor.rulers": [100],
    "editor.tabSize": 2,
    "eslint.validate": [
      "javascript",
      "javascriptreact",
      "typescript",
      "typescriptreact"
    ],
    "eslint.workingDirectories": [{ "mode": "auto" }],
    "files.exclude": {
      "**/.awcache": true,
      "**/.cache": true,
      "**/.DS_Store": true,
      "**/.git": true,
      "**/.gradle": true,
      "**/.hg": true,
      "**/.sonarlint": true,
      "**/.svn": true,
      "**/.vscode": true,
      "**/eslint-report.json": true,
      "**/bower_components": true,
      "**/build": true,
      "**/CVS": true,
      "**/node": true,
      "**/node_modules": true,
      "**/out": true,
      "**/coverage": true,
      "**/target": true
    },
    "javascript.preferences.importModuleSpecifier": "relative",
    "typescript.preferences.importModuleSpecifier": "project-relative",
    "javascript.updateImportsOnFileMove.enabled": "always",
    "javascript.validate.enable": false,
    "prettier.configPath": "server/sonar-web/.prettierrc",
    "search.exclude": {
      "**/build": true,
      "**/target": true,
      "**/.awcache": true,
      "**/node_modules": true,
      "**/bower_components": true,
      "**/.sonarlint": true,
      "**/flow-typed": true,
      "**/yarn.lock": true,
      "**/coverage": true,
      "**/*.js.snap": true,
      "**/*.ts.snap": true
    },
    "typescript.updateImportsOnFileMove.enabled": "always",
    "[javascriptreact]": {
      "editor.defaultFormatter": "esbenp.prettier-vscode"
    },
    "[html]": {
      "editor.defaultFormatter": "esbenp.prettier-vscode"
    },
    "[javascript]": {
      "editor.defaultFormatter": "esbenp.prettier-vscode"
    },
    "[typescriptreact]": {
      "editor.defaultFormatter": "esbenp.prettier-vscode"
    },
    "[typescript]": {
      "editor.defaultFormatter": "esbenp.prettier-vscode"
    },
    "[css]": {
      "editor.defaultFormatter": "esbenp.prettier-vscode"
    },
    "[markdown]": {
      "editor.defaultFormatter": null
    },
    "[yaml]": {
      "editor.insertSpaces": true,
      "editor.tabSize": 2,
      "editor.autoIndent": "keep",
      "diffEditor.ignoreTrimWhitespace": false,
      "editor.formatOnSave": false
    }
}