Skip to content

Commit d46e783

Browse files
authored
DEV: Update linting (discourse#89)
1 parent 48be65a commit d46e783

File tree

20 files changed

+1218
-684
lines changed

20 files changed

+1218
-684
lines changed

.eslintrc

-3
This file was deleted.

.eslintrc.cjs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = require("@discourse/lint-configs/eslint");

.prettierrc

-1
This file was deleted.

.prettierrc.cjs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = require("@discourse/lint-configs/prettier");

.template-lintrc.cjs

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = require("@discourse/lint-configs/template-lint");

.template-lintrc.js

-4
This file was deleted.

Gemfile.lock

+31-26
Original file line numberDiff line numberDiff line change
@@ -2,47 +2,52 @@ GEM
22
remote: https://rubygems.org/
33
specs:
44
ast (2.4.2)
5-
json (2.6.2)
6-
parallel (1.22.1)
7-
parser (3.1.2.1)
5+
json (2.7.1)
6+
language_server-protocol (3.17.0.3)
7+
parallel (1.24.0)
8+
parser (3.3.0.4)
89
ast (~> 2.4.1)
9-
prettier_print (1.2.0)
10+
racc
11+
prettier_print (1.2.1)
12+
racc (1.7.3)
1013
rainbow (3.1.1)
11-
regexp_parser (2.6.0)
12-
rexml (3.2.5)
13-
rubocop (1.36.0)
14+
regexp_parser (2.9.0)
15+
rexml (3.2.6)
16+
rubocop (1.60.0)
1417
json (~> 2.3)
18+
language_server-protocol (>= 3.17.0)
1519
parallel (~> 1.10)
16-
parser (>= 3.1.2.1)
20+
parser (>= 3.3.0.2)
1721
rainbow (>= 2.2.2, < 4.0)
1822
regexp_parser (>= 1.8, < 3.0)
1923
rexml (>= 3.2.5, < 4.0)
20-
rubocop-ast (>= 1.20.1, < 2.0)
24+
rubocop-ast (>= 1.30.0, < 2.0)
2125
ruby-progressbar (~> 1.7)
22-
unicode-display_width (>= 1.4.0, < 3.0)
23-
rubocop-ast (1.21.0)
24-
parser (>= 3.1.1.0)
25-
rubocop-discourse (3.0)
26-
rubocop (>= 1.1.0)
27-
rubocop-rspec (>= 2.0.0)
28-
rubocop-rspec (2.13.2)
29-
rubocop (~> 1.33)
30-
ruby-progressbar (1.11.0)
31-
syntax_tree (5.1.0)
26+
unicode-display_width (>= 2.4.0, < 3.0)
27+
rubocop-ast (1.30.0)
28+
parser (>= 3.2.1.0)
29+
rubocop-capybara (2.20.0)
30+
rubocop (~> 1.41)
31+
rubocop-discourse (3.6.0)
32+
rubocop (>= 1.59.0)
33+
rubocop-rspec (>= 2.25.0)
34+
rubocop-factory_bot (2.25.1)
35+
rubocop (~> 1.41)
36+
rubocop-rspec (2.26.1)
37+
rubocop (~> 1.40)
38+
rubocop-capybara (~> 2.17)
39+
rubocop-factory_bot (~> 2.22)
40+
ruby-progressbar (1.13.0)
41+
syntax_tree (6.2.0)
3242
prettier_print (>= 1.2.0)
33-
unicode-display_width (2.3.0)
43+
unicode-display_width (2.5.0)
3444

3545
PLATFORMS
36-
arm64-darwin-20
3746
ruby
38-
x86_64-darwin-18
39-
x86_64-darwin-19
40-
x86_64-darwin-20
41-
x86_64-linux
4247

4348
DEPENDENCIES
4449
rubocop-discourse
4550
syntax_tree
4651

4752
BUNDLED WITH
48-
2.3.10
53+
2.5.4

assets/javascripts/discourse-user-notes/connectors/after-reviewable-post-user/show-user-notes-on-flags.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
import EmberObject from "@ember/object";
2+
import { emojiUrlFor } from "discourse/lib/text";
3+
import { getOwner } from "discourse-common/lib/get-owner";
14
import I18n from "I18n";
25
import { showUserNotes } from "discourse/plugins/discourse-user-notes/discourse-user-notes/lib/user-notes";
3-
import { getOwner } from "discourse-common/lib/get-owner";
4-
import { emojiUrlFor } from "discourse/lib/text";
5-
import EmberObject from "@ember/object";
66

77
export default {
88
shouldRender(args, component) {

assets/javascripts/discourse-user-notes/connectors/user-card-post-names/show-user-notes-on-card.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1+
import { emojiUrlFor } from "discourse/lib/text";
2+
import { getOwner } from "discourse-common/lib/get-owner";
13
import I18n from "I18n";
24
import { showUserNotes } from "discourse/plugins/discourse-user-notes/discourse-user-notes/lib/user-notes";
3-
import { getOwner } from "discourse-common/lib/get-owner";
4-
import { emojiUrlFor } from "discourse/lib/text";
55

66
export default {
77
shouldRender(args, component) {

assets/javascripts/discourse-user-notes/connectors/user-profile-controls/show-notes-on-profile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import { showUserNotes } from "discourse/plugins/discourse-user-notes/discourse-user-notes/lib/user-notes";
21
import { getOwner } from "discourse-common/lib/get-owner";
2+
import { showUserNotes } from "discourse/plugins/discourse-user-notes/discourse-user-notes/lib/user-notes";
33

44
export default {
55
shouldRender(args, component) {

assets/javascripts/discourse-user-notes/lib/user-notes.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import UserNotesModal from "../../discourse/components/modal/user-notes";
21
import { getOwnerWithFallback } from "discourse-common/lib/get-owner";
2+
import UserNotesModal from "../../discourse/components/modal/user-notes";
33

44
export function showUserNotes(store, userId, callback, opts) {
55
const modal = getOwnerWithFallback(this).lookup("service:modal");

assets/javascripts/discourse-user-notes/templates/connectors/after-reviewable-post-user/show-user-notes-on-flags.hbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{{#if userNotesCount}}
22
<DButton
3-
@class="btn btn-flat"
43
@translatedTitle={{userNotesTitle}}
54
@action={{action "showUserNotes"}}
5+
class="btn btn-flat"
66
>
77
{{#if emojiEnabled}}
88
<img

assets/javascripts/discourse-user-notes/templates/connectors/user-card-post-names/show-user-notes-on-card.hbs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{{#if userNotesCount}}
22
<DButton
3-
@class="btn btn-flat"
43
@translatedTitle={{userNotesTitle}}
54
@action={{action "showUserNotes"}}
5+
class="btn btn-flat"
66
>
77
{{#if emojiEnabled}}
88
<img

assets/javascripts/discourse/components/modal/user-notes.hbs

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<DButton
88
@action={{this.attachNote}}
99
@label="user_notes.attach"
10-
@class="btn-primary"
1110
@disabled={{this.attachDisabled}}
11+
class="btn-primary"
1212
/>
1313

1414
{{#each @model.note as |n|}}
@@ -28,8 +28,8 @@
2828
<DButton
2929
@action={{fn this.removeNote n}}
3030
@icon="far-trash-alt"
31-
@class="btn-small btn-danger"
3231
@title="user_notes.remove"
32+
class="btn-small btn-danger"
3333
/>
3434
</span>
3535
{{/if}}

assets/javascripts/discourse/components/modal/user-notes.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import Component from "@glimmer/component";
2-
import I18n from "I18n";
2+
import { tracked } from "@glimmer/tracking";
33
import { action } from "@ember/object";
44
import { inject as service } from "@ember/service";
55
import { popupAjaxError } from "discourse/lib/ajax-error";
6-
import { tracked } from "@glimmer/tracking";
6+
import I18n from "I18n";
77

88
export default class UserNotesModal extends Component {
99
@service dialog;

assets/javascripts/discourse/initializers/enable-user-notes.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { withPluginApi } from "discourse/lib/plugin-api";
22
import { iconNode } from "discourse-common/lib/icon-library";
3-
import { showUserNotes } from "discourse/plugins/discourse-user-notes/discourse-user-notes/lib/user-notes";
43
import { observes, on } from "discourse-common/utils/decorators";
4+
import { showUserNotes } from "discourse/plugins/discourse-user-notes/discourse-user-notes/lib/user-notes";
55

66
const PLUGIN_ID = "discourse-user-notes";
77

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "discourse-user-notes",
3-
"version": "0.0.2",
4-
"repository": "https://github.com/discourse/discourse-user-notes",
5-
"author": "Discourse",
6-
"license": "MIT",
3+
"private": true,
74
"devDependencies": {
8-
"eslint-config-discourse": "^3.4.0"
5+
"@discourse/lint-configs": "^1.3.5",
6+
"ember-template-lint": "^5.13.0",
7+
"eslint": "^8.56.0",
8+
"prettier": "^2.8.8"
99
}
1010
}

plugin.rb

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
# version: 0.0.2
77
# authors: Robin Ward
88
# url: https://github.com/discourse/discourse-user-notes
9-
# transpile_js: true
109

1110
enabled_site_setting :user_notes_enabled
1211

test/javascripts/acceptance/user-notes-test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { acceptance } from "discourse/tests/helpers/qunit-helpers";
2-
import { test } from "qunit";
31
import { click, fillIn, visit } from "@ember/test-helpers";
2+
import { test } from "qunit";
3+
import { acceptance } from "discourse/tests/helpers/qunit-helpers";
44
import I18n from "I18n";
55

66
acceptance("User Notes", function (needs) {

0 commit comments

Comments
 (0)