forked from CodeBoarding/CodeBoarding
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstatic_analysis_config.yml
More file actions
47 lines (47 loc) 路 1.05 KB
/
Copy pathstatic_analysis_config.yml
File metadata and controls
47 lines (47 loc) 路 1.05 KB
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
lsp_servers:
python:
name: Pyright Language Server
command:
- ./static_analyzer/servers/py-lsp
- --stdio
languages:
- python
file_extensions:
- .py
- .pyi
install_commands: pip install pyright
typescript:
name: TypeScript Language Server
command:
- ./static_analyzer/servers/node_modules/.bin/typescript-language-server
- --stdio
- --log-level=2
languages:
- typescript
- javascript
file_extensions:
- .ts
- .tsx
- .js
- .jsx
install_commands: npm install --save-dev typescript-language-server typescript
go:
name: Go Language Server (gopls)
command:
- ./static_analyzer/servers/gopls
- serve
languages:
- go
file_extensions:
- .go
install_commands: go install golang.org/x/tools/gopls@latest
tools:
tokei:
name: tokei
command:
- ./static_analyzer/servers/tokei
- -o
- json
description: Analyze repository languages and file types
install_command: conda install -c conda-forge tokei
output_format: json