Skip to content
This repository was archived by the owner on Jul 14, 2025. It is now read-only.

Commit ea9be03

Browse files
authored
DEV: Update linting (#642)
1 parent cdfa3a6 commit ea9be03

File tree

5 files changed

+349
-342
lines changed

5 files changed

+349
-342
lines changed

Gemfile.lock

Lines changed: 26 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
activesupport (8.0.1)
4+
activesupport (8.0.2)
55
base64
66
benchmark (>= 0.3)
77
bigdecimal
@@ -23,21 +23,21 @@ GEM
2323
drb (2.2.1)
2424
i18n (1.14.7)
2525
concurrent-ruby (~> 1.0)
26-
json (2.10.1)
26+
json (2.10.2)
2727
language_server-protocol (3.17.0.4)
2828
lint_roller (1.1.0)
2929
logger (1.6.6)
30-
minitest (5.25.4)
30+
minitest (5.25.5)
3131
parallel (1.26.3)
3232
parser (3.3.7.1)
3333
ast (~> 2.4.1)
3434
racc
3535
prettier_print (1.2.1)
3636
racc (1.8.1)
37-
rack (3.1.10)
37+
rack (3.1.12)
3838
rainbow (3.1.1)
3939
regexp_parser (2.10.0)
40-
rubocop (1.72.2)
40+
rubocop (1.74.0)
4141
json (~> 2.3)
4242
language_server-protocol (~> 3.17.0.2)
4343
lint_roller (~> 1.1.0)
@@ -48,21 +48,24 @@ GEM
4848
rubocop-ast (>= 1.38.0, < 2.0)
4949
ruby-progressbar (~> 1.7)
5050
unicode-display_width (>= 2.4.0, < 4.0)
51-
rubocop-ast (1.38.0)
51+
rubocop-ast (1.38.1)
5252
parser (>= 3.3.1.0)
53-
rubocop-capybara (2.21.0)
54-
rubocop (~> 1.41)
55-
rubocop-discourse (3.9.3)
53+
rubocop-capybara (2.22.1)
54+
lint_roller (~> 1.1)
55+
rubocop (~> 1.72, >= 1.72.1)
56+
rubocop-discourse (3.12.1)
5657
activesupport (>= 6.1)
57-
rubocop (>= 1.59.0)
58-
rubocop-capybara (>= 2.0.0)
59-
rubocop-factory_bot (>= 2.0.0)
60-
rubocop-rails (>= 2.25.0)
58+
lint_roller (>= 1.1.0)
59+
rubocop (>= 1.73.2)
60+
rubocop-capybara (>= 2.22.0)
61+
rubocop-factory_bot (>= 2.27.0)
62+
rubocop-rails (>= 2.30.3)
6163
rubocop-rspec (>= 3.0.1)
62-
rubocop-rspec_rails (>= 2.30.0)
63-
rubocop-factory_bot (2.26.1)
64-
rubocop (~> 1.61)
65-
rubocop-rails (2.30.1)
64+
rubocop-rspec_rails (>= 2.31.0)
65+
rubocop-factory_bot (2.27.1)
66+
lint_roller (~> 1.1)
67+
rubocop (~> 1.72, >= 1.72.1)
68+
rubocop-rails (2.30.3)
6669
activesupport (>= 4.2.0)
6770
lint_roller (~> 1.1)
6871
rack (>= 1.1)
@@ -71,9 +74,10 @@ GEM
7174
rubocop-rspec (3.5.0)
7275
lint_roller (~> 1.1)
7376
rubocop (~> 1.72, >= 1.72.1)
74-
rubocop-rspec_rails (2.30.0)
75-
rubocop (~> 1.61)
76-
rubocop-rspec (~> 3, >= 3.0.1)
77+
rubocop-rspec_rails (2.31.0)
78+
lint_roller (~> 1.1)
79+
rubocop (~> 1.72, >= 1.72.1)
80+
rubocop-rspec (~> 3.5)
7781
ruby-progressbar (1.13.0)
7882
securerandom (0.4.1)
7983
syntax_tree (6.2.0)
@@ -83,7 +87,7 @@ GEM
8387
unicode-display_width (3.1.4)
8488
unicode-emoji (~> 4.0, >= 4.0.4)
8589
unicode-emoji (4.0.4)
86-
uri (1.0.2)
90+
uri (1.0.3)
8791

8892
PLATFORMS
8993
ruby
@@ -93,4 +97,4 @@ DEPENDENCIES
9397
syntax_tree
9498

9599
BUNDLED WITH
96-
2.6.4
100+
2.6.5

assets/stylesheets/assigns.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,7 @@
233233

234234
.assign-username {
235235
font-weight: bold;
236+
236237
@include ellipsis;
237238
}
238239

assets/stylesheets/mobile/assigns.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@
7474

7575
.group-assignments .mobile-nav a.expander > span {
7676
display: flex;
77+
7778
@include ellipsis;
7879

7980
.assign-count {

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"private": true,
33
"devDependencies": {
4-
"@discourse/lint-configs": "2.5.0",
4+
"@discourse/lint-configs": "2.7.0",
55
"ember-template-lint": "6.1.0",
6-
"eslint": "9.19.0",
6+
"eslint": "9.20.1",
77
"prettier": "2.8.8",
88
"stylelint": "16.14.1"
99
},

0 commit comments

Comments
 (0)