Skip to content

Commit

Permalink
change max char length to 250
Browse files Browse the repository at this point in the history
  • Loading branch information
gentaiscool committed Jun 7, 2022
1 parent dea8573 commit 47613d2
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ examples_dir := examples
# Format source code automatically (one file)

quality:
black --line-length 119 --target-version py38 $(check_file)
black --line-length 250 --target-version py38 $(check_file)
isort $(check_file)
flake8 $(check_file) --max-line-length 119
flake8 $(check_file) --max-line-length 250

# Format source code automatically (all files)

quality_all:
black --check --line-length 119 --target-version py38 $(datasets_dir)
black --check --line-length 250 --target-version py38 $(datasets_dir)
isort --check-only $(datasets_dir)
flake8 $(datasets_dir) --max-line-length 119
black --check --line-length 119 --target-version py38 $(examples_dir)
flake8 $(datasets_dir) --max-line-length 250
black --check --line-length 250 --target-version py38 $(examples_dir)
isort --check-only $(examples_dir)
flake8 $(examples_dir) --max-line-length 119
flake8 $(examples_dir) --max-line-length 250

0 comments on commit 47613d2

Please sign in to comment.