Skip to content
Snippets Groups Projects
Commit 3817ed2f authored by Clayton, Brandon Scott's avatar Clayton, Brandon Scott
Browse files

add markdownlint

parent 7082888b
No related branches found
No related tags found
1 merge request!510Markdown
......@@ -23,3 +23,7 @@ config.properties
libs
.factorypath
.apt_generated*
# Node
node_modules
package-lock.json
##
# 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
.settings
bin
build
tmp
libs
node_modules
......@@ -30,8 +30,9 @@
plugins {
id "application"
id "com.diffplug.gradle.spotless" version "${spotlessVersion}"
id "com.github.spotbugs" version "${spotbugsVersion}"
id "com.github.johnrengelman.shadow" version "${shadowVersion}"
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"
id "jacoco"
......@@ -109,7 +110,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"
}
......@@ -9,7 +9,8 @@ junitVersion = 5.5.2
logbackVersion = 1.2.3
mnOpenAPIVersion = 1.4.0
mnVersion = 1.3.2
nshmpLibVersion = 0.2.10
nodeVersion = 3.0.1
nshmpLibVersion = 0.2.11
shadowVersion = 5.2.0
spotbugsVersion = 4.2.4
spotlessVersion = 4.1.0
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment