This commit is contained in:
Mayel de Borniol 2023-10-31 17:05:48 +00:00
parent 0a6d703698
commit 01c9aec695
3 changed files with 16 additions and 18 deletions

View file

@ -2,17 +2,17 @@ image:
file: .gitpod.Dockerfile file: .gitpod.Dockerfile
tasks: tasks:
- name: Setup - name: Setup
init: just setup init: just setup
command: just dev command: just dev
github: # github:
prebuilds: # prebuilds:
# enable for the default branch (defaults to true) # # enable for the default branch (defaults to true)
master: true # master: true
# enable for all branches in this repo (defaults to false) # # enable for all branches in this repo (defaults to false)
branches: false # branches: false
# enable for pull requests coming from this repo (defaults to true) # # enable for pull requests coming from this repo (defaults to true)
pullRequests: false # pullRequests: false
# add a check to pull requests (defaults to true) # # add a check to pull requests (defaults to true)
addCheck: true # addCheck: true
# add a "Review in Gitpod" button as a comment to pull requests (defaults to false) # # add a "Review in Gitpod" button as a comment to pull requests (defaults to false)
addComment: false # addComment: false

View file

@ -3,8 +3,6 @@
// For a full list of overridable settings, and general information on folder-specific settings, // For a full list of overridable settings, and general information on folder-specific settings,
// see the documentation: https://docs.zed.dev/configuration/configuring-zed#folder-specific-settings // see the documentation: https://docs.zed.dev/configuration/configuring-zed#folder-specific-settings
{ {
format_on_save: true, "format_on_save": "on",
"elixir": { "formatter": "language_server"
"lsp": "next_ls"
}
} }

View file

@ -50,7 +50,7 @@ defmodule Bonfire.Umbrella.MixProject do
# tests # tests
# {:floki, ">= 0.0.0", only: [:dev, :test]}, # {:floki, ">= 0.0.0", only: [:dev, :test]},
# {:pages, "~> 0.12", only: :test}, # extends Floki for testing # {:pages, "~> 0.12", only: :test}, # extends Floki for testing
{:mock, "~> 0.3", only: :test}, {:mock, "~> 0.3", only: :test},
{:mox, "~> 1.0", only: :test}, {:mox, "~> 1.0", only: :test},
{:ex_machina, "~> 2.7", only: [:dev, :test]}, {:ex_machina, "~> 2.7", only: [:dev, :test]},