This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo: required | |
language: elixir | |
elixir: | |
- 1.10 | |
opt_release: | |
- 22.2.6 | |
addons: | |
postgres: "9.4" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"terminal.integrated.automationShell.osx": "", | |
"editor.fontFamily": "FiraCode-Retina", | |
"emmet.includeLanguages": { | |
"html-eex": "html" | |
}, | |
"files.associations": { | |
"*.eex": "html-eex", | |
"*.leex": "html-eex" | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# VSCode | |
Plugins: | |
- [ ] (https://marketplace.visualstudio.com/items?itemName=HookyQR.beautify)[Beautify] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="p-10 bg-white" id={@repo.id}> | |
<div class="flex space-x-3"> | |
<img src={@repo.avatar_url} alt="" class="h-50 w-50 rounded-full"> | |
<div class="flex-1 space-y-1"> | |
<div class="pt-10 flex items-center justify-between"> | |
<p class="text-gray-900"> | |
<strong>Language: </strong> | |
</p> | |
<p><%= @repo.language %></p> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Format | |
on: pull_request | |
jobs: | |
check_format: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
elixir: [1.13] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
verbose: false, | |
private: false, | |
skip: false, | |
router: "", | |
exit: "false", | |
format: "txt", | |
out: "", | |
threshold: "high", | |
ignore: ["Config.CSP", "Config.HTTPS"], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
%{ | |
configs: [ | |
%{ | |
name: "default", | |
files: %{ | |
included: ~w{config lib test} | |
}, | |
strict: true, | |
color: true, | |
checks: [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Security | |
on: pull_request | |
jobs: | |
check_security: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
elixir: [1.13] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Lint | |
on: pull_request | |
jobs: | |
check_lint: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
elixir: [1.13] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dialyzer | |
on: pull_request | |
jobs: | |
check_security: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
elixir: [1.13] |