Disable eslint for js test files to test for github-ci

This commit is contained in:
Emin Kocan 2024-09-14 15:21:47 +02:00
parent 5c7b7383e7
commit b17517e02c
5 changed files with 26 additions and 2 deletions

View file

@ -142,7 +142,7 @@ gem "image_processing"
gem "unicode-display_width" gem "unicode-display_width"
gem "teaspoon" gem "teaspoon"
gem "teaspoon-mocha" gem "teaspoon-mocha", "~> 2.3.3"
# Gems useful for development # Gems useful for development
group :development do group :development do
@ -178,3 +178,10 @@ group :test do
gem "simplecov-lcov", :require => false gem "simplecov-lcov", :require => false
gem "webmock" gem "webmock"
end end
group :development, :test do
gem "annotate"
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", :require => "debug/prelude"
end

View file

@ -81,6 +81,9 @@ GEM
tzinfo (~> 2.0, >= 2.0.5) tzinfo (~> 2.0, >= 2.0.5)
addressable (2.8.7) addressable (2.8.7)
public_suffix (>= 2.0.2, < 7.0) public_suffix (>= 2.0.2, < 7.0)
annotate (3.2.0)
activerecord (>= 3.2, < 8.0)
rake (>= 10.4, < 14.0)
argon2 (2.3.0) argon2 (2.3.0)
ffi (~> 1.15) ffi (~> 1.15)
ffi-compiler (~> 1.0) ffi-compiler (~> 1.0)
@ -166,6 +169,9 @@ GEM
sprockets-rails sprockets-rails
tilt tilt
date (3.3.4) date (3.3.4)
debug (1.9.2)
irb (~> 1.10)
reline (>= 0.3.8)
debug_inspector (1.2.0) debug_inspector (1.2.0)
deep_merge (1.2.2) deep_merge (1.2.2)
delayed_job (4.1.12) delayed_job (4.1.12)
@ -618,6 +624,7 @@ DEPENDENCIES
active_record_union active_record_union
activerecord-import activerecord-import
addressable (~> 2.8) addressable (~> 2.8)
annotate
argon2 argon2
autoprefixer-rails autoprefixer-rails
aws-sdk-s3 aws-sdk-s3
@ -636,6 +643,7 @@ DEPENDENCIES
connection_pool connection_pool
dalli dalli
dartsass-sprockets dartsass-sprockets
debug
debug_inspector debug_inspector
delayed_job_active_record delayed_job_active_record
doorkeeper doorkeeper
@ -707,7 +715,7 @@ DEPENDENCIES
sprockets-exporters_pack sprockets-exporters_pack
strong_migrations (< 2.0.0) strong_migrations (< 2.0.0)
teaspoon teaspoon
teaspoon-mocha teaspoon-mocha (~> 2.3.3)
terser terser
turbo-rails turbo-rails
unicode-display_width unicode-display_width

View file

@ -9,6 +9,13 @@ SET xmloption = content;
SET client_min_messages = warning; SET client_min_messages = warning;
SET row_security = off; SET row_security = off;
--
-- Name: public; Type: SCHEMA; Schema: -; Owner: -
--
-- *not* creating schema, since initdb creates it
-- --
-- Name: btree_gist; Type: EXTENSION; Schema: -; Owner: - -- Name: btree_gist; Type: EXTENSION; Schema: -; Owner: -
-- --

View file

@ -1,3 +1,4 @@
/* eslint-disable */
//= require jquery //= require jquery
//= require js-cookie/dist/js.cookie //= require js-cookie/dist/js.cookie
//= require osm //= require osm

View file

@ -1,3 +1,4 @@
/* eslint-disable */
// Teaspoon includes some support files, but you can use anything from your own support path too. // Teaspoon includes some support files, but you can use anything from your own support path too.
// require support/expect // require support/expect
// require support/sinon // require support/sinon