diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-02-02 21:20:34 -0800 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-02-02 21:20:34 -0800 |
commit | 6579c336f96b00bb7897f7cbf2056286c1781281 (patch) | |
tree | e195cfc9e58e38ede87cd9ecf67308d2890bceec /.rubocop.yml | |
parent | cc39bca3fa71930421f1c46844b4d02d5ff93e8b (diff) | |
download | gitlab-ce-6579c336f96b00bb7897f7cbf2056286c1781281.tar.gz |
Rubocop: Ascii restrictions
Diffstat (limited to '.rubocop.yml')
-rw-r--r-- | .rubocop.yml | 4 |
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.' |