From 30c9e2de3fc85406a1c5868d6dfdb9d15c416785 Mon Sep 17 00:00:00 2001 From: Brandon Clayton <bclayton@usgs.gov> Date: Tue, 16 Feb 2021 16:19:07 -0700 Subject: [PATCH] add markdownlint --- .gitignore | 4 ++++ .markdownlint.yml | 16 ++++++++++++++++ .markdownlintignore | 6 ++++++ build.gradle | 4 +++- gradle.properties | 3 ++- 5 files changed, 31 insertions(+), 2 deletions(-) create mode 100644 .markdownlint.yml create mode 100644 .markdownlintignore diff --git a/.gitignore b/.gitignore index 9cf14e7..b90622a 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,7 @@ tmp .factorypath src/resources/fault libs + +# Node +node_modules +package-lock.json diff --git a/.markdownlint.yml b/.markdownlint.yml new file mode 100644 index 0000000..a2fbcaa --- /dev/null +++ b/.markdownlint.yml @@ -0,0 +1,16 @@ +## +# Rules for markdownlint. +# +# See https://github.com/DavidAnson/markdownlint +## + +default: true + +# MD013/line-length - Line length +MD013: + # Number of characters + line_length: 100 + # Number of characters for headings + heading_line_length: 100 + # Number of characters for code blocks + code_block_line_length: 100 diff --git a/.markdownlintignore b/.markdownlintignore new file mode 100644 index 0000000..e8239e8 --- /dev/null +++ b/.markdownlintignore @@ -0,0 +1,6 @@ +.settings +bin +build +tmp +libs +node_modules diff --git a/build.gradle b/build.gradle index 81b7d42..8e66375 100644 --- a/build.gradle +++ b/build.gradle @@ -2,6 +2,7 @@ plugins { id "application" id "com.diffplug.gradle.spotless" version "${spotlessVersion}" id "com.github.johnrengelman.shadow" version "5.2.0" + id "com.github.node-gradle.node" version "${nodeVersion}" id "com.github.spotbugs" version "${spotbugsVersion}" id "com.star-zero.gradle.githook" version "${githooksVersion}" id "eclipse-wtp" @@ -84,7 +85,8 @@ gradle.afterProject { } into nshmpLib } - apply from: "${nshmpLibGradleDir}/spotbugs.gradle" apply from: "${nshmpLibGradleDir}/git-hooks.gradle" + apply from: "${nshmpLibGradleDir}/markdownlint.gradle" + apply from: "${nshmpLibGradleDir}/spotbugs.gradle" apply from: "${nshmpLibGradleDir}/spotless.gradle" } diff --git a/gradle.properties b/gradle.properties index f49436b..1774901 100644 --- a/gradle.properties +++ b/gradle.properties @@ -5,8 +5,9 @@ junitVersion = 5.5.2 logbackVersion = 1.2.3 mnVersion = 1.3.3 mnOpenAPIVersion = 1.4.0 +nodeVersion = 3.0.1 nshmFaultSectionsTag = v0.1 -nshmpLibVersion = 0.2.6 +nshmpLibVersion = 0.2.11 spotbugsVersion = 4.2.4 spotlessVersion = 4.1.0 swaggerVersion = 2.1.1 -- GitLab