mirror of
https://gitea.invidious.io/iv-org/shard-ameba.git
synced 2024-08-15 00:53:29 +00:00
Rename Config::PATH
to Config::DEFAULT_PATH
This commit is contained in:
parent
9534104942
commit
749da0984c
3 changed files with 6 additions and 6 deletions
|
@ -20,7 +20,7 @@ module Ameba
|
||||||
|
|
||||||
describe Formatter::TODOFormatter do
|
describe Formatter::TODOFormatter do
|
||||||
::Spec.after_each do
|
::Spec.after_each do
|
||||||
FileUtils.rm_rf(Ameba::Config::PATH)
|
FileUtils.rm_rf(Ameba::Config::DEFAULT_PATH)
|
||||||
end
|
end
|
||||||
|
|
||||||
context "problems not found" do
|
context "problems not found" do
|
||||||
|
@ -45,7 +45,7 @@ module Ameba
|
||||||
s = Source.new "a = 1", "source.cr"
|
s = Source.new "a = 1", "source.cr"
|
||||||
s.add_issue DummyRule.new, {1, 2}, "message"
|
s.add_issue DummyRule.new, {1, 2}, "message"
|
||||||
formatter.finished([s])
|
formatter.finished([s])
|
||||||
io.to_s.should contain "Created #{Config::PATH}"
|
io.to_s.should contain "Created #{Config::DEFAULT_PATH}"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,7 @@ class Ameba::Config
|
||||||
"~/.config/ameba/config.yml",
|
"~/.config/ameba/config.yml",
|
||||||
}
|
}
|
||||||
FILENAME = ".ameba.yml"
|
FILENAME = ".ameba.yml"
|
||||||
PATH = Path[Dir.current] / FILENAME
|
DEFAULT_PATH = Path[Dir.current] / FILENAME
|
||||||
|
|
||||||
DEFAULT_GLOBS = %w(
|
DEFAULT_GLOBS = %w(
|
||||||
**/*.cr
|
**/*.cr
|
||||||
|
@ -94,7 +94,7 @@ class Ameba::Config
|
||||||
if path
|
if path
|
||||||
return File.exists?(path) ? File.read(path) : nil
|
return File.exists?(path) ? File.read(path) : nil
|
||||||
end
|
end
|
||||||
path = Path[PATH].expand(home: true)
|
path = Path[DEFAULT_PATH].expand(home: true)
|
||||||
|
|
||||||
search_paths = path
|
search_paths = path
|
||||||
.parents
|
.parents
|
||||||
|
|
|
@ -26,7 +26,7 @@ module Ameba::Formatter
|
||||||
end
|
end
|
||||||
|
|
||||||
private def generate_todo_config(issues)
|
private def generate_todo_config(issues)
|
||||||
file = File.new(Config::PATH, mode: "w")
|
file = File.new(Config::DEFAULT_PATH, mode: "w")
|
||||||
file << header
|
file << header
|
||||||
rule_issues_map(issues).each do |rule, rule_issues|
|
rule_issues_map(issues).each do |rule, rule_issues|
|
||||||
file << "\n# Problems found: #{rule_issues.size}"
|
file << "\n# Problems found: #{rule_issues.size}"
|
||||||
|
|
Loading…
Reference in a new issue