X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/43db18ae911fef3ad7b36e9ed27e5eff469ef863..837924027a804a1a31ae1a2a3958c8e27e402a5e:/lib/tasks/eslint.rake diff --git a/lib/tasks/eslint.rake b/lib/tasks/eslint.rake index 790ef150d..8a8d7c8a4 100644 --- a/lib/tasks/eslint.rake +++ b/lib/tasks/eslint.rake @@ -5,21 +5,15 @@ def yarn_path end def config_file - Rails.root.join("config/eslint.js").to_s -end - -def js_files - Rails.application.assets.each_file.select do |file| - file.ends_with?(".js") && !file.match?(%r{/(gems|vendor|i18n|node_modules)/}) - end + Rails.root.join("config/eslint.config.mjs").to_s end namespace "eslint" do task :check => :environment do - system(yarn_path, "run", "eslint", "-c", config_file, *js_files) || abort + system(yarn_path, "run", "eslint", "-c", config_file, "--no-warn-ignored", Rails.root.to_s) || abort end task :fix => :environment do - system(yarn_path, "run", "eslint", "-c", config_file, "--fix", *js_files) || abort + system(yarn_path, "run", "eslint", "-c", config_file, "--no-warn-ignored", "--fix", Rails.root.to_s) || abort end end