Skip to content

Commit a7adcb1

Browse files
committed
Resolve conventional violation
- Style/FrozenStringLiteralComment: Missing frozen string literal comment. - Layout/EmptyLineAfterMagicComment: Add an empty line after magic comments. - Style/StringLiterals: Prefer single-quoted strings when you don't need string interpolation or special symbols.
1 parent 4865de3 commit a7adcb1

1 file changed

Lines changed: 8 additions & 6 deletions

File tree

ruby/Steepfile

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
1+
# frozen_string_literal: true
2+
13
D = Steep::Diagnostic
24

35
target :app do
4-
check "main.rb"
5-
check "src"
6-
check "test"
7-
signature "sig"
6+
check 'main.rb'
7+
check 'src'
8+
check 'test'
9+
signature 'sig'
810

9-
library "date"
10-
library "fileutils"
11+
library 'date'
12+
library 'fileutils'
1113

1214
configure_code_diagnostics(D::Ruby.default)
1315
end

0 commit comments

Comments
 (0)