forked from mokevnin/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
addons.yml
73 lines (66 loc) · 1.39 KB
/
addons.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
63
64
65
66
67
68
69
70
71
72
73
---
- hosts: all
tasks:
- apt: name={{ item }} state=latest
become: yes
with_items:
- ack-grep
- clang-format-3.6
- clang-3.6
- llvm
- exuberant-ctags
- curl
- python-apt
- python-pycurl
- python-dev
- python-setuptools
- flex
when: ansible_distribution == 'Ubuntu'
tags: always
- easy_install: name=pip
become: yes
tags: always
- shell: composer global require "squizlabs/php_codesniffer=*"
# become: yes
ignore_errors: yes
tags:
- all
- php
- pip: name={{ item }} state=present
become: yes
with_items:
- pylint
- ansible-lint
# - grip
- bashate
tags:
- all
- gem: name={{ item }} state=latest user_install=no
become: yes
ignore_errors: yes
with_items:
- haml-lint
- ruby-lint
- sqlint
- rubocop
tags:
- all
- ruby
- npm: name={{ item }} global=yes state=latest
become: yes
ignore_errors: yes
with_items:
- js-yaml
- stylelint
- jsonlint
- eslint
- eslint-config-airbnb
- eslint-plugin-react
tags:
- all
- copy:
src: ./files/eslintrc
dest: ~/.eslintrc
backup: yes
tags:
- all