Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-02-03 08:20:34 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-02-03 08:20:34 +0300
commit6579c336f96b00bb7897f7cbf2056286c1781281 (patch)
treee195cfc9e58e38ede87cd9ecf67308d2890bceec /.rubocop.yml
parentcc39bca3fa71930421f1c46844b4d02d5ff93e8b (diff)
Rubocop: Ascii restrictions
Diffstat (limited to '.rubocop.yml')
-rw-r--r--.rubocop.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.rubocop.yml b/.rubocop.yml
index 3c64374772a..c3f3d7bca66 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -45,12 +45,12 @@ Style/ArrayJoin:
Style/AsciiComments:
Description: 'Use only ascii symbols in comments.'
StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#english-comments'
- Enabled: false
+ Enabled: true
Style/AsciiIdentifiers:
Description: 'Use only ascii symbols in identifiers.'
StyleGuide: 'https://github.com/bbatsov/ruby-style-guide#english-identifiers'
- Enabled: false
+ Enabled: true
Style/Attr:
Description: 'Checks for uses of Module#attr.'