Skip to content
This repository has been archived by the owner on Feb 14, 2023. It is now read-only.

Commit

Permalink
add markdownlint-cli package & settings Close #31.
Browse files Browse the repository at this point in the history
  • Loading branch information
nksazonov committed Nov 3, 2022
1 parent fd9aaa6 commit 2674c6a
Show file tree
Hide file tree
Showing 5 changed files with 332 additions and 7 deletions.
4 changes: 4 additions & 0 deletions .markdownlint.autodocs.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"no-duplicate-heading": false,
"no-multiple-blanks": false
}
1 change: 1 addition & 0 deletions .markdownlintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules/
5 changes: 3 additions & 2 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"recommendations": [
"streetsidesoftware.code-spell-checker",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"nomicfoundation.hardhat-solidity",
"wayou.vscode-todo-highlight"
"streetsidesoftware.code-spell-checker",
"wayou.vscode-todo-highlight",
"davidanson.vscode-markdownlint"
],

"unwantedRecommendations": []
Expand Down
16 changes: 11 additions & 5 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,12 @@
// Diff editor
"diffEditor.ignoreTrimWhitespace": false,

// Spell checker
"cSpell.enableFiletypes": ["javascript", "typescript", "solidity", "json", "markdown"],
"cSpell.includeRegExpList": ["CStyleComment"],
"cSpell.userWords": ["delegatecall", "keccak", "proxied", "reentrancy", "solhint", "struct"],
"cSpell.words": ["Structs"],

// Todo highlight
"todohighlight.isCaseSensitive": false,
"todohighlight.keywords": [
Expand All @@ -72,9 +78,9 @@
}
],

// Spell checker
"cSpell.enableFiletypes": ["javascript", "typescript", "solidity", "json", "markdown"],
"cSpell.includeRegExpList": ["CStyleComment"],
"cSpell.userWords": ["delegatecall", "keccak", "proxied", "reentrancy", "solhint", "struct"],
"cSpell.words": ["Structs"]
// markdownlint
"markdownlint.config": {
"no-duplicate-heading": false,
"no-multiple-blanks": false
}
}
Loading

0 comments on commit 2674c6a

Please sign in to comment.