Skip to content

Commit

Permalink
chore: prevent prettier from formatting markdown
Browse files Browse the repository at this point in the history
- handled by markdownlint

Signed-off-by: Lexus Drumgold <[email protected]>
  • Loading branch information
unicornware committed Aug 16, 2022
1 parent d60974d commit 6c67427
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
1 change: 1 addition & 0 deletions .dictionary.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
ahmadnassri
anson
autocrlf
autosetuprebase
bdel
Expand Down
2 changes: 0 additions & 2 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
# DIRECTORIES & FILES
**/*.snap
**/.DS_Store
**/CHANGELOG.md
**/LICENSE.md
.eslintcache
.yarn/*
__tests__/report.json
Expand Down
2 changes: 1 addition & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
# https://prettier.io/docs/en/ignore.html

# DIRECTORIES & FILES
**/*.md
**/*.snap
**/.gitignore
**/.gitkeep
Expand All @@ -13,7 +14,6 @@
.nvmrc
.prettierignore
.yarn/*
CHANGELOG.md
__tests__/report.json
coverage/*
dist/*
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
"editor.defaultFormatter": "DavidAnson.vscode-markdownlint"
},
"[shellscript]": {
"editor.defaultFormatter": "foxundermoon.shell-format"
Expand Down
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,17 +65,17 @@ Follow the steps below to setup your local development environment:
# PATH
# 1. local node_modules
[ -d $PWD/node_modules/.bin ] && export PATH=$PWD/node_modules/.bin:$PATH

# DOTENV ZSH PLUGIN
# - https://github.com/ohmyzsh/ohmyzsh/tree/master/plugins/dotenv
export ZSH_DOTENV_FILE=.env.zsh

# NVM
# - https://github.com/nvm-sh/nvm
export NVM_DIR=$HOME/.nvm

# ---------------------------------------------------------------------------

# LOAD ENVIRONMENT VARIABLES IN CURRENT WORKING DIRECTORY
# 1. $GITHUB_WORKSPACE
[ -d $PWD/.git ] && export GITHUB_WORKSPACE=$(git rev-parse --show-toplevel)
Expand Down

0 comments on commit 6c67427

Please sign in to comment.