DEV: Remove hints of jshint (#14828)
This commit is contained in:
parent
641f49748d
commit
e6245bd603
|
@ -1,4 +1,3 @@
|
|||
/*jshint maxlen:10000000 */
|
||||
export default {
|
||||
"/latest.json": {
|
||||
users: [
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
/*jshint maxlen:10000000 */
|
||||
import { NOTIFICATION_TYPES } from "./concerns/notification-types";
|
||||
|
||||
export default {
|
||||
|
|
|
@ -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
|
@ -1,4 +1,3 @@
|
|||
/*jshint maxlen:10000000 */
|
||||
export default {
|
||||
"/top.json": {
|
||||
users: [
|
||||
|
|
|
@ -1,5 +1,3 @@
|
|||
import I18n from "I18n";
|
||||
/*jshint maxlen:10000000 */
|
||||
export default {
|
||||
"/t/130.json": {
|
||||
post_stream: {
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
/*jshint maxlen:10000000 */
|
||||
export default {
|
||||
"/u/eviltrout.json": {
|
||||
user_badges: [
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
import PreloadStore from "discourse/lib/preload-store";
|
||||
|
||||
/*jshint maxlen:10000000 */
|
||||
PreloadStore.store("site", {
|
||||
default_archetype: "regular",
|
||||
notification_types: {
|
||||
|
|
|
@ -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}")
|
||||
|
|
Loading…
Reference in New Issue