We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26140d4 commit 8772b5eCopy full SHA for 8772b5e
.ameba.yml
@@ -0,0 +1,15 @@
1
+Style/RedundantReturn:
2
+ Enabled: false
3
+
4
+Lint/UnusedArgument:
5
6
7
+Style/HeredocIndent:
8
+ Enabled: true
9
+ IndentBy: 0
10
11
+Naming/BlockParameterName:
12
13
14
+Metrics/CyclomaticComplexity:
15
spec/choose_spec.cr
@@ -4,6 +4,6 @@ describe Choose do
# TODO: Write tests
it "works" do
- false.should eq(false)
+ false.should be_false
end
src/choose.cr
@@ -11,7 +11,7 @@ module Choose
def self.banner
str = <<-EOF
choose - A wise license generator
-
Usage:
16
choose <command> license [output] [--options]
17
0 commit comments