From 2adb2b19fce3a92f2e8e2d6e5a7915888cced09d Mon Sep 17 00:00:00 2001 From: Koichi ITO Date: Mon, 10 Jul 2017 22:36:57 +0900 Subject: Enable Layout/EmptyLineAfterMagicComment cop --- .rubocop.yml | 3 +++ 1 file changed, 3 insertions(+) (limited to '.rubocop.yml') diff --git a/.rubocop.yml b/.rubocop.yml index b8b3eb8eea..2b874d8419 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -25,6 +25,9 @@ Layout/CaseIndentation: Layout/CommentIndentation: Enabled: true +Layout/EmptyLineAfterMagicComment: + Enabled: true + # No extra empty lines. Layout/EmptyLines: Enabled: true -- cgit v1.2.3 From d7b1521db83998fb57811ecc9d12b68e610a44bd Mon Sep 17 00:00:00 2001 From: Kir Shatrov Date: Sun, 16 Jul 2017 20:11:16 +0300 Subject: Use frozen string literal in activemodel/ --- .rubocop.yml | 1 + 1 file changed, 1 insertion(+) (limited to '.rubocop.yml') diff --git a/.rubocop.yml b/.rubocop.yml index 2b874d8419..8032ece333 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -85,6 +85,7 @@ Style/FrozenStringLiteralComment: EnforcedStyle: always Include: - 'activesupport/**/*' + - 'activemodel/**/*' - 'activejob/**/*' # Use `foo {}` not `foo{}`. -- cgit v1.2.3 From 4183d5dfa1d6d651232a4db44a1fcf71d220af4e Mon Sep 17 00:00:00 2001 From: Ryuta Kamizono Date: Sun, 16 Jul 2017 18:11:03 +0900 Subject: Enable `Layout/FirstParameterIndentation` cop We have some indentation cops. But now there is a little inconsistent params indentations. Enable `Layout/FirstParameterIndentation` cop to prevent newly inconsistent indentation added and auto-correct to existing violations. --- .rubocop.yml | 3 +++ 1 file changed, 3 insertions(+) (limited to '.rubocop.yml') diff --git a/.rubocop.yml b/.rubocop.yml index 8032ece333..efd154156a 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -44,6 +44,9 @@ Layout/EmptyLinesAroundMethodBody: Layout/EmptyLinesAroundModuleBody: Enabled: true +Layout/FirstParameterIndentation: + Enabled: true + # Use Ruby >= 1.9 syntax for hashes. Prefer { a: :b } over { :a => :b }. Style/HashSyntax: Enabled: true -- cgit v1.2.3 From 831be98f9a6685da3410b0c9bf4143bd8dd647af Mon Sep 17 00:00:00 2001 From: Kir Shatrov Date: Sun, 9 Jul 2017 20:41:28 +0300 Subject: Use frozen-string-literal in ActiveRecord --- .rubocop.yml | 1 + 1 file changed, 1 insertion(+) (limited to '.rubocop.yml') diff --git a/.rubocop.yml b/.rubocop.yml index efd154156a..cb8dc513a9 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -90,6 +90,7 @@ Style/FrozenStringLiteralComment: - 'activesupport/**/*' - 'activemodel/**/*' - 'activejob/**/*' + - 'activerecord/**/*' # Use `foo {}` not `foo{}`. Layout/SpaceBeforeBlockBraces: -- cgit v1.2.3 From 82df8c2ca545785cd49f8c9552a054a05e6ac289 Mon Sep 17 00:00:00 2001 From: Kir Shatrov Date: Sun, 23 Jul 2017 18:17:16 +0300 Subject: Use frozen string literal in actionmailer/ --- .rubocop.yml | 1 + 1 file changed, 1 insertion(+) (limited to '.rubocop.yml') diff --git a/.rubocop.yml b/.rubocop.yml index cb8dc513a9..7433824b70 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -91,6 +91,7 @@ Style/FrozenStringLiteralComment: - 'activemodel/**/*' - 'activejob/**/*' - 'activerecord/**/*' + - 'actionmailer/**/*' # Use `foo {}` not `foo{}`. Layout/SpaceBeforeBlockBraces: -- cgit v1.2.3 From 385825fb705446a1f11e82b65ca97a50d7e67898 Mon Sep 17 00:00:00 2001 From: Kir Shatrov Date: Sun, 16 Jul 2017 20:10:15 +0300 Subject: Use frozen string literal in actioncable/ --- .rubocop.yml | 1 + 1 file changed, 1 insertion(+) (limited to '.rubocop.yml') diff --git a/.rubocop.yml b/.rubocop.yml index 7433824b70..8663034a1a 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -89,6 +89,7 @@ Style/FrozenStringLiteralComment: Include: - 'activesupport/**/*' - 'activemodel/**/*' + - 'actioncable/**/*' - 'activejob/**/*' - 'activerecord/**/*' - 'actionmailer/**/*' -- cgit v1.2.3 From 424117281e72284539a10d26162b8ce9e95cf865 Mon Sep 17 00:00:00 2001 From: Kir Shatrov Date: Sun, 23 Jul 2017 18:36:41 +0300 Subject: Use frozen string literal in actionview/ --- .rubocop.yml | 4 ++++ 1 file changed, 4 insertions(+) (limited to '.rubocop.yml') diff --git a/.rubocop.yml b/.rubocop.yml index 8663034a1a..7dfb7b4b81 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -93,6 +93,10 @@ Style/FrozenStringLiteralComment: - 'activejob/**/*' - 'activerecord/**/*' - 'actionmailer/**/*' + - 'actionview/**/*' + Exclude: + - 'actionview/test/**/*.builder' + - 'actionview/test/**/*.ruby' # Use `foo {}` not `foo{}`. Layout/SpaceBeforeBlockBraces: -- cgit v1.2.3 From dfcc766163fa58389a6fe6dc5788533a455f8a89 Mon Sep 17 00:00:00 2001 From: Kir Shatrov Date: Mon, 24 Jul 2017 23:20:53 +0300 Subject: Use frozen string literal in actionpack/ --- .rubocop.yml | 3 +++ 1 file changed, 3 insertions(+) (limited to '.rubocop.yml') diff --git a/.rubocop.yml b/.rubocop.yml index 7dfb7b4b81..0408ca4aa1 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -94,9 +94,12 @@ Style/FrozenStringLiteralComment: - 'activerecord/**/*' - 'actionmailer/**/*' - 'actionview/**/*' + - 'actionpack/**/*' Exclude: - 'actionview/test/**/*.builder' - 'actionview/test/**/*.ruby' + - 'actionpack/test/**/*.builder' + - 'actionpack/test/**/*.ruby' # Use `foo {}` not `foo{}`. Layout/SpaceBeforeBlockBraces: -- cgit v1.2.3