-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path510.yml
62 lines (58 loc) · 1.68 KB
/
510.yml
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
- group:
description: "Essential development tools"
checks:
- version:
cmd: node --version
range: ^10.x.x
- version:
cmd: git --version
range: ^2.x.x
- contains:
comment: Checking email is set for git commits
string: "@"
file: ~/.gitconfig
- group:
description: "Shell utilities"
checks:
- version:
cmd: curl --version
range: ^7.x.x
- version:
cmd: wget --version
range: ^1.9.x
- group:
description: "Editor support"
checks:
- version:
comment: Visual Studio Code is a great editor for editing configuration scripts.
cmd: code --version
range: ^1.36.1
- version:
comment: vim is useful for quick edits in the terminal
cmd: vim --version
range: ^8.0.x
- contains:
comment: Syntax highlighting should be enabled in vim!
string: "syntax on"
file: ~/.vimrc
- contains:
# https://stackoverflow.com/questions/2514445/turning-off-auto-indent-when-pasting-text-into-vim
comment: Setting pastetoggle is useful when copying code in vim. Example `set pastetoggle=<F8>`
string: "set pastetoggle"
file: ~/.vimrc
- group:
description: "Virtualization support and tools"
checks:
- capability:
memory: 4
cores: 2
virtualization: true
- version:
cmd: baker --version
range: ^0.7.1
- version:
cmd: vagrant --version
range: ^2.1.1
- version:
cmd: VBoxManage --version
range: 5.2.x