-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
015d2bd
commit 3146614
Showing
128 changed files
with
24 additions
and
4,888 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"java.compile.nullAnalysis.mode": "disabled" | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,17 @@ | ||
.PHONY: all install-deps build | ||
|
||
# List of project directories | ||
PROJECTS= rewrite-core rewrite-java rewrite-json rewrite-python rewrite-xml rewrite-yaml | ||
|
||
# Default target | ||
all: install-deps build | ||
|
||
# Define a target to install dependencies for all projects | ||
install-deps: | ||
@for project in $(PROJECTS); do\ | ||
echo "Installing dependencies for $$project";\ | ||
cd $$project && poetry install;\ | ||
cd -;\ | ||
done | ||
echo "Installing dependencies";\ | ||
poetry install;\ | ||
|
||
# Define a target to build all projects | ||
build: | ||
@for project in $(PROJECTS); do\ | ||
echo "Building project $$project";\ | ||
cd $$project && poetry build;\ | ||
cd -;\ | ||
done | ||
echo "Building project";\ | ||
poetry build;\ | ||
|
||
test: | ||
pytest |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[virtualenvs] | ||
in-project = true | ||
prefer-active-python = true | ||
|
||
[virtualenvs.options] | ||
always-copy = true |
10 changes: 5 additions & 5 deletions
10
rewrite/rewrite-java/pyproject.toml → rewrite/pyproject.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"typeCheckingMode": "basic", | ||
"pythonVersion": "3.8", | ||
"include": ["**/*.py"] | ||
} | ||
"typeCheckingMode": "basic", | ||
"pythonVersion": "3.8", | ||
"include": ["**/*.py"] | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.