DEV: Remove hints of jshint (#14828)

This commit is contained in:
Jarek Radosz 2021-11-08 02:12:37 +01:00 committed by GitHub
parent 641f49748d
commit e6245bd603
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 1 additions and 10 deletions

View File

@ -1,4 +1,3 @@
/*jshint maxlen:10000000 */
export default {
"/latest.json": {
users: [

View File

@ -1,4 +1,3 @@
/*jshint maxlen:10000000 */
import { NOTIFICATION_TYPES } from "./concerns/notification-types";
export default {

View File

@ -1,4 +1,3 @@
/*jshint maxlen:10000000 */
export default {
"/topics/private-messages/eviltrout.json": {
users: [

File diff suppressed because one or more lines are too long

View File

@ -1,4 +1,3 @@
/*jshint maxlen:10000000 */
export default {
"/top.json": {
users: [

View File

@ -1,5 +1,3 @@
import I18n from "I18n";
/*jshint maxlen:10000000 */
export default {
"/t/130.json": {
post_stream: {

View File

@ -1,4 +1,3 @@
/*jshint maxlen:10000000 */
export default {
"/u/eviltrout.json": {
user_badges: [

View File

@ -1,6 +1,5 @@
import PreloadStore from "discourse/lib/preload-store";
/*jshint maxlen:10000000 */
PreloadStore.store("site", {
default_archetype: "regular",
notification_types: {

View File

@ -19,7 +19,7 @@ task 'integration:create_fixtures' => :environment do
filename = "#{Rails.root}/test/javascripts/fixtures/#{type}_fixtures.js"
content = "/*jshint maxlen:10000000 */\nexport default {\n"
content = "export default {\n"
urls.each do |url|
http_result = fake_xhr("http://localhost:3000#{url}")