Skip to content

Commit

Permalink
Merge pull request #82 from ataraxie/develop
Browse files Browse the repository at this point in the history
* Annotation, documentation and formatting change detection
* Add python support
  • Loading branch information
ishtiaque05 authored Oct 6, 2021
2 parents e7f5f01 + 0b2255d commit 02df94c
Show file tree
Hide file tree
Showing 210 changed files with 4,968 additions and 391 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ cache/
output/
outputserver/
target/
node_modules/

# IntelliJ
.idea/
Expand All @@ -17,3 +18,10 @@ src/test/resources/oracles/java2/

misc/stubs-generator/csv/
misc/stubs-generator/output/

# Antlr
src/main/antlr4
src/main/java/*ParseTree

# Misc
.DS_Store
16 changes: 16 additions & 0 deletions bin/clone-java-repositories.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ if [ -z "$1" ]
exit 1
fi

# Java Repos
git -C "$1" clone https://github.com/checkstyle/checkstyle.git
git -C "$1" clone https://github.com/apache/commons-lang.git
git -C "$1" clone https://github.com/apache/flink.git
Expand All @@ -26,3 +27,18 @@ git -C "$1" clone https://github.com/apache/lucene-solr.git
git -C "$1" clone https://github.com/mockito/mockito.git
git -C "$1" clone https://github.com/pmd/pmd.git
git -C "$1" clone https://github.com/spring-projects/spring-boot.git

# Python Repos
git -C "$1" clone https://github.com/asciinema/asciinema.git
git -C "$1" clone https://github.com/django/django.git
git -C "$1" clone https://github.com/pallets/flask.git
git -C "$1" clone https://github.com/jakubroztocil/httpie.git
git -C "$1" clone https://github.com/keras-team/keras.git
git -C "$1" clone https://github.com/tensorflow/models.git
git -C "$1" clone https://github.com/pandas-dev/pandas.git
git -C "$1" clone https://github.com/shobrook/rebound.git
git -C "$1" clone https://github.com/scikit-learn/scikit-learn.git
git -C "$1" clone https://github.com/zulip/zulip.git

# TypeScript Repos
git -C "$1" clone https://github.com/microsoft/vscode.git
8 changes: 8 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"name": "codeshovel",
"version": "",
"license": "UNLICENSED",
"devDependencies": {
"typescript": "^3.9.2"
}
}
Loading

0 comments on commit 02df94c

Please sign in to comment.