From eb26ec065f2ce8f29a7eb57070a17ba7890f33ad Mon Sep 17 00:00:00 2001 From: Yang Song Date: Tue, 1 Oct 2019 11:46:01 -0700 Subject: [PATCH] Disable line length check (MD013) --- .circleci/config.yml | 2 +- .vscode/settings.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 72446530d58..c767ca4abb6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -20,7 +20,7 @@ jobs: command: gem install mdl - run: name: Check markdownlint - command: mdl . + command: mdl -r ~MD013 . workflows: version: 2 diff --git a/.vscode/settings.json b/.vscode/settings.json index f401cd9b57c..1dc11065b5b 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,6 +2,6 @@ "rewrap.wrappingColumn": 80, "editor.rulers": [80], "markdownlint.config": { - "MD013": true + "MD013": false }, } \ No newline at end of file