Add the following to the plugins section of build.gradle
id 'nebula.lint' version '16.17.0'
Add the following for gradle dependency linting
#!/usr/bin/env bash | |
set -euo pipefail | |
if [ $# -ne 3 ] | |
then | |
echo ""${0##*/}" CN OU FILE_NAME" | |
exit | |
fi | |
# Certificate Attributes |
list="a b" | |
for x in $list; do | |
echo $x | |
done | |
for x in "a" "b"; do | |
echo $x | |
done |
// Get credit card bank statements | |
[ | |
...document.querySelectorAll("i[id$='requestThisDocumentLink-download']"), | |
].forEach((v, i) => setTimeout(() => v.click(), 2500 * i)); | |
// Get savings/checking account statements | |
[ | |
...document.querySelectorAll("i[id$='downloadDocumentDropdown-icon']"), | |
].forEach((v, i) => | |
setTimeout(() => { |
apply plugin: 'com.diffplug.spotless' | |
spotless { | |
java { | |
removeUnusedImports() | |
prettier(['prettier': 'latest', 'prettier-plugin-java': 'latest']).config(['parser': 'java', 'useTabs': true]) | |
} | |
groovyGradle { | |
greclipse() | |
} | |
} |