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 886cdf5 commit b0f42c3Copy full SHA for b0f42c3
Rakefile
@@ -643,6 +643,11 @@ namespace :py do
643
644
Rake::Task['py:changelog'].invoke
645
end
646
+
647
+ desc 'Update Python Syntax'
648
+ task :lint do
649
+ `tox -c py/tox.ini -e linting`
650
+ end
651
652
653
def ruby_version
@@ -703,6 +708,11 @@ namespace :rb do
703
708
Rake::Task['rb:changelog'].invoke unless new_version.include?('nightly')
704
709
sh 'cd rb && bundle update'
705
710
711
712
+ desc 'Update Ruby Syntax'
713
714
+ `cd rb && bundle exec rubocop -a`
715
706
716
707
717
718
def dotnet_version
0 commit comments