Gentoo Archives: gentoo-commits

From: Alex Legler <a3li@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] sites/www:master commit in: /
Date: Mon, 30 Nov 2015 19:48:37
Message-Id: 1448912893.290e3c916a29c2a8b2aa4b5d89adc1343e7122f8.a3li@gentoo
1 commit: 290e3c916a29c2a8b2aa4b5d89adc1343e7122f8
2 Author: Alex Legler <alex <AT> a3li <DOT> li>
3 AuthorDate: Mon Nov 30 19:48:13 2015 +0000
4 Commit: Alex Legler <a3li <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 30 19:48:13 2015 +0000
6 URL: https://gitweb.gentoo.org/sites/www.git/commit/?id=290e3c91
7
8 Add code style settings
9
10 .rubocop.yml | 17 +++++++++++++++++
11 1 file changed, 17 insertions(+)
12
13 diff --git a/.rubocop.yml b/.rubocop.yml
14 new file mode 100644
15 index 0000000..fe6df44
16 --- /dev/null
17 +++ b/.rubocop.yml
18 @@ -0,0 +1,17 @@
19 +Style/FormatString:
20 + Enabled: false
21 +
22 +Style/Documentation:
23 + Enabled: false
24 +
25 +Style/PerlBackrefs:
26 + Enabled: false
27 +
28 +Metrics/LineLength:
29 + Max: 120
30 +
31 +Metrics/MethodLength:
32 + Max: 20
33 +
34 +Metrics/ModuleLength:
35 + Max: 200