File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
elixir_ls_debugger/test/fixtures/mix_project/config
language_server/test/providers Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
# This file is responsible for configuring your application
2
2
# and its dependencies with the aid of the Mix.Config module.
3
- use Mix. Config
3
+ import Config
4
4
5
5
# This configuration is loaded before any dependency and is restricted
6
6
# to this project. If another project depends on this project, this
Original file line number Diff line number Diff line change 1
1
# This file is responsible for configuring your application
2
2
# and its dependencies with the aid of the Mix.Config module.
3
- use Mix. Config
3
+ import Config
4
4
5
5
# This configuration is loaded before any dependency and is restricted
6
6
# to this project. If another project depends on this project, this
Original file line number Diff line number Diff line change @@ -2337,7 +2337,7 @@ defmodule ElixirLS.LanguageServer.Providers.DocumentSymbolsTest do
2337
2337
uri = "file:///project/test.exs"
2338
2338
2339
2339
text = """
2340
- use Mix. Config
2340
+ import Config
2341
2341
config :logger, :console,
2342
2342
level: :info,
2343
2343
format: "$date $time [$level] $metadata$message\n ",
@@ -2387,7 +2387,7 @@ defmodule ElixirLS.LanguageServer.Providers.DocumentSymbolsTest do
2387
2387
uri = "file:///project/test.exs"
2388
2388
2389
2389
text = """
2390
- use Mix. Config
2390
+ import Config
2391
2391
config :logger, :console,
2392
2392
level: :info,
2393
2393
format: "$date $time [$level] $metadata$message\n ",
You can’t perform that action at this time.
0 commit comments