Merge branch 'rust-embedded:master' into master

pull/148/head
zanezhub 2 years ago committed by GitHub
commit a76dd17faa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -193,7 +193,12 @@ class DevTool
def misspell
puts 'Misspell'.light_blue
exit(1) unless system(".vendor/misspell -error #{tracked_files.join(' ')}")
translations = ['README.CN.md', 'README.ES.md']
files = tracked_files.reject { |f| translations.include?(File.basename(f)) }
files = files.join(' ')
exit(1) unless system(".vendor/misspell -error #{files}")
end
def rubocop

Loading…
Cancel
Save