We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e9d106 commit bb90869Copy full SHA for bb90869
.muse.toml
@@ -0,0 +1,21 @@
1
+# don't run eslint... it is for js and will detect false positives
2
+# in javadoc directories.
3
+
4
+disableTools = ["eslint"]
5
6
+# Ignore warnings not relevant to this specific project:
7
+#
8
+# 1) FindSecBugs identifies our use of ThreadLocalRandom as predictable.
9
+# We make extensive use of this class for randomness. Our use of randomness
10
+# in this library is NOT at all security related, and rather, we simply need
11
+# a fast pseudorandom number generator since we need to generate large
12
+# numbers of random numbers. So ignore predictable random warnings.
13
14
+ignore = ["PREDICTABLE_RANDOM"]
15
16
+# Ignore results from these directories
17
18
+ignoreFiles = """
19
+docs/api/jquery/
20
+tests/
21
+"""
0 commit comments