-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path342.yml
More file actions
47 lines (45 loc) · 1.4 KB
/
342.yml
File metadata and controls
47 lines (45 loc) · 1.4 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
- group:
description: "Essential development tools"
checks:
- version:
cmd: node --version
range: ^14.15.x
- version:
cmd: git --version
range: ^2.24.x
- contains:
comment: Checking email is set for git commits
string: "@"
file: ~/.gitconfig
- group:
description: "Shell utilities"
checks:
- version:
cmd: ssh -V
range: ^2.x.x
- version:
cmd: curl --version
range: ^7.x.x
- version:
cmd: wget --version
range: ^1.9.x
- version:
comment: Very useful utility for parsing json files. Download from https://stedolan.github.io/jq/download/
cmd: jq --version
range: ^1.5.x
- group:
description: "Editor support"
checks:
- version:
comment: Visual Studio Code is a great editor for editing configuration scripts.
cmd: code --version
range: ^1.59.1
- 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