File tree Expand file tree Collapse file tree
elixir_ls_debugger/test/fixtures/mix_project/config
language_server/test/providers Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# This file is responsible for configuring your application
22# and its dependencies with the aid of the Mix.Config module.
3- use Mix. Config
3+ import Config
44
55# This configuration is loaded before any dependency and is restricted
66# to this project. If another project depends on this project, this
Original file line number Diff line number Diff line change 11# This file is responsible for configuring your application
22# and its dependencies with the aid of the Mix.Config module.
3- use Mix. Config
3+ import Config
44
55# This configuration is loaded before any dependency and is restricted
66# 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
23372337 uri = "file:///project/test.exs"
23382338
23392339 text = """
2340- use Mix. Config
2340+ import Config
23412341 config :logger, :console,
23422342 level: :info,
23432343 format: "$date $time [$level] $metadata$message\n ",
@@ -2387,7 +2387,7 @@ defmodule ElixirLS.LanguageServer.Providers.DocumentSymbolsTest do
23872387 uri = "file:///project/test.exs"
23882388
23892389 text = """
2390- use Mix. Config
2390+ import Config
23912391 config :logger, :console,
23922392 level: :info,
23932393 format: "$date $time [$level] $metadata$message\n ",
You can’t perform that action at this time.
0 commit comments