forked from cicirello/JavaPermutationTools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.lift.toml
More file actions
28 lines (21 loc) · 937 Bytes
/
.lift.toml
File metadata and controls
28 lines (21 loc) · 937 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
build = "mvn"
# don't run eslint... it is for js and will detect false positives
# in javadoc directories.
disableTools = ["eslint"]
# Enable PMD, which is disabled by default.
# Now I know why it is disabled by default.... It takes forever to run.
# customTools = [ "https://help.sonatype.com/lift/files/78578763/78578764/1/1623180860953/pmd.sh rulesets/java/quickstart.xml" ]
# Ignore warnings not relevant to this specific project:
#
# 1) FindSecBugs identifies our use of ThreadLocalRandom as predictable.
# We make extensive use of this class for randomness. Our use of randomness
# in this library is NOT at all security related, and rather, we simply need
# a fast pseudorandom number generator since we need to generate large
# numbers of random numbers. So ignore predictable random warnings.
ignore = ["PREDICTABLE_RANDOM"]
# Ignore results from these directories
ignoreFiles = """
docs/api/jquery/
tests/
*.js
"""