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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
|
*TODOJDK
# git
.gitignore
.git
# Emacs and other temporary files
*~
.#*
\#*#
TAGS
tags
*.swp
*.orig
.DS_Store
# Eclipse files
.metadata
.classpath
.project
.externalToolBuilders
.settings
dot_files
# Intellij files
.idea
Makefile.user
local.properties
# ant tab completion cache file
.ant-targets-build.xml
# build files
api
build
dist
stubparser/docs/api
# Don't want to ignore .jar files in checker/lib/ nor in gradle/wrapper
# *.jar
checker/jdk/jdk*.jar
checker/jdk/**/*.class
*.pyc
checker/build-temp
checker/bin-devel/.run-google-java-format
checker/bin-devel/.plume-scripts
# manual files
bib
*.synctex.gz
manual.aux
manual.blg
manual.dvi
manual.haux
manual.html
manual.htoc
manual.image.out
manual.image.tex
manual.image.tex.new
manual.image.log
manual.log
manual.out
manual.pdf
manual.ps
manual.toc
manual001.gif
manual001.png
manual002.gif
manual002.png
manual003.gif
manual003.png
manual004.gif
manual004.png
docs/manual/contributors.txt
docs/manual/figures/*.eps
docs/manual/figures/*.pdf
docs/manual/figures/*.png
docs/manual/figures/signature-types-with-canonicalname.dia
docs/manual/*.png
docs/manual/*.svg
docs/examples/**/*.class
docs/examples/MavenExample/Out.txt
docs/examples/lombok/Out.txt
docs/examples/lombok/.gradle/
docs/examples/lombok/lombok.config
docs/manual/manual.html-e
# dataflow manual
dataflow/manual/dataflow.aux
dataflow/manual/dataflow.dvi
dataflow/manual/dataflow.log
dataflow/manual/dataflow.out
dataflow/manual/dataflow.pdf
checker/tests/command-line/issue618/TwoCheckers.class
checker/tests/command-line/issue618/out.txt
checker/tests/nullness-extra/*.class
checker/tests/nullness-extra/compat/Out.txt
checker/tests/nullness-extra/compat/javax/annotation/Nullable.class
checker/tests/nullness-extra/compat/lib/Lib.class
checker/tests/nullness-extra/multiple-errors/*.class
checker/tests/nullness-extra/multiple-errors/Out.txt
checker/tests/nullness-extra/package-anno/Out.txt
checker/tests/nullness-extra/package-anno/test/*.class
checker/tests/nullness-extra/shorthand/NullnessRegexWithErrors.class
checker/tests/nullness-extra/shorthand/Out.txt
checker/tests/nullness-extra/issue502/Issue502.class
checker/tests/nullness-extra/issue502/Out.txt
checker/tests/nullness-extra/issue594/Out.txt
checker/tests/nullness-extra/issue607/Issue607.class
checker/tests/nullness-extra/issue607/Issue607Interface.class
checker/tests/nullness-extra/issue607/Issue607SuperClass.class
checker/tests/nullness/generics/*.class
checker/tests/nullness-temp/*.java
checker/tests/nullness-temp/*.class
checker/jtreg/multipleexecutions/Main.class
# Source is copied from elsewhere.
checker-qual/src
checker-qual-android/src
framework/tests/whole-program-inference/annotated/
docs/tutorial/src/personalblog-demo/bin/net/eyde/personalblog/service/PersonalBlogService.class
docs/tutorial/src/personalblog-demo/bin/net/eyde/personalblog/struts/action/ReadAction.class
docs/tutorial/sourcefiles.zip
# release tmps
tmp
# Maven files
target/
*.ipr
*.iws
*.iml
/.gradle/
|