X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/e206dd527ef7c6d1829f131533d722e536e4bfb5..837924027a804a1a31ae1a2a3958c8e27e402a5e:/lib/tasks/eslint.rake diff --git a/lib/tasks/eslint.rake b/lib/tasks/eslint.rake index 27b550e40..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.ends_with?(".js.erb")) && !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