Skip to content

Commit

Permalink
chore(mix): Apply snake_case for *.exs (#328)
Browse files Browse the repository at this point in the history
  • Loading branch information
aifrak authored Mar 13, 2022
1 parent 8474621 commit a6c9b6a
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"explorer.experimental.fileNesting.enabled": true,
"explorer.experimental.fileNesting.expand": false,
"explorer.experimental.fileNesting.patterns": {
".check.exs": ".check-*.exs",
".check.exs": ".check_*.exs",
".commitlintrc*": ".cz.*",
".eslintrc*": ".eslint*",
".markdownlint*": ".markdownlintignore",
Expand Down
6 changes: 3 additions & 3 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ defmodule App.MixProject do

defp aliases do
[
check: ["check --config .check-dev.exs"],
"check.ci": ["check --config .check-ci.exs"],
check: ["check --config .check_dev.exs"],
"check.ci": ["check --config .check_ci.exs"],
"format.all": [
"check --config .check-format.exs \
"check --config .check_format.exs \
--only css_format \
--only dockerfile_format \
--only elixir_format \
Expand Down

0 comments on commit a6c9b6a

Please sign in to comment.