clean: use camel case for class file

This commit is contained in:
starnakin 2024-02-20 09:29:47 +01:00 committed by AdrienLSH
parent 7705a2b817
commit fe6d5dfc93
16 changed files with 21 additions and 21 deletions

View File

@ -1,4 +1,4 @@
import { Client } from "./client.js"; import { Client } from "./Client.js";
class Account class Account
{ {

View File

@ -1,12 +1,12 @@
import { Account } from "./account.js"; import { Account } from "./Account.js";
import { MatchMaking } from "./matchmaking.js"; import { MatchMaking } from "./matchmaking.js";
import { Profiles } from "./profiles.js"; import { Profiles } from "./Profiles.js";
import { Channels } from './chat/channels.js'; import { Channels } from './chat/Channels.js';
import { MyProfile } from "./MyProfile.js"; import { MyProfile } from "./MyProfile.js";
import { navigateTo } from "../index.js"; import { navigateTo } from "../index.js";
import { Tourmanents } from "./tournament/tournaments.js"; import { Tourmanents } from "./tournament/Tournaments.js";
import {Notice} from "./chat/notice.js"; import {Notice} from "./chat/Notice.js";
import { Channel } from "./chat/channel.js"; import { Channel } from "./chat/Channel.js";
import LanguageManager from './LanguageManager.js'; import LanguageManager from './LanguageManager.js';
function getCookie(name) function getCookie(name)

View File

@ -1,5 +1,5 @@
import { Client } from "./client.js"; import { Client } from "./Client.js";
import { Profile } from "./profile.js"; import { Profile } from "./Profile.js";
class MyProfile extends Profile class MyProfile extends Profile
{ {

View File

@ -1,4 +1,4 @@
import { Client } from "./client.js"; import { Client } from "./Client.js";
class Profile class Profile
{ {

View File

@ -1,4 +1,4 @@
import { Profile } from "./profile.js"; import { Profile } from "./Profile.js";
class Profiles class Profiles
{ {

View File

@ -1,4 +1,4 @@
import {Message} from "./message.js"; import {Message} from "./Message.js";
class Channel { class Channel {
constructor(client, channel_id, members_id, messages, reload) { constructor(client, channel_id, members_id, messages, reload) {

View File

@ -1,4 +1,4 @@
import {Channel} from "./channel.js"; import {Channel} from "./Channel.js";
class Channels { class Channels {
constructor(client) { constructor(client) {

View File

@ -4,7 +4,7 @@ import { GameConfig } from "./GameConfig.js";
import { Player } from "./Player.js"; import { Player } from "./Player.js";
import { Time } from "./Time.js"; import { Time } from "./Time.js";
import { Wall } from "./Wall.js"; import { Wall } from "./Wall.js";
import { Client } from "../client.js"; import { Client } from "../Client.js";
class Game class Game
{ {

View File

@ -1,5 +1,5 @@
import { Player } from "./Player.js"; import { Player } from "./Player.js";
import { Client } from "../client.js"; import { Client } from "../Client.js";
import { Game } from "./Game.js"; import { Game } from "./Game.js";
import { Segment } from "./Segment.js"; import { Segment } from "./Segment.js";

View File

@ -1,4 +1,4 @@
import { Client } from "./client.js"; import { Client } from "./Client.js";
class MatchMaking class MatchMaking
{ {

View File

@ -1,4 +1,4 @@
import { Client } from "../client.js"; import { Client } from "../Client.js";
class Tourmanent class Tourmanent
{ {

View File

@ -1,5 +1,5 @@
import { Client } from "../client.js"; import { Client } from "../Client.js";
import { Tourmanent } from "./tournament.js"; import { Tourmanent } from "./Tournament.js";
class Tourmanents class Tourmanents
{ {

View File

@ -1,4 +1,4 @@
import { Client } from "./api/client.js"; import { Client } from "./api/Client.js";
import Dashboard from "./views/Dashboard.js"; import Dashboard from "./views/Dashboard.js";
import Search from "./views/Search.js"; import Search from "./views/Search.js";

View File

@ -1,6 +1,6 @@
import AbstractView from "./abstracts/AbstractView.js"; import AbstractView from "./abstracts/AbstractView.js";
import { client, lang } from "../index.js"; import { client, lang } from "../index.js";
import {Message} from "../api/chat/message.js"; import {Message} from "../api/chat/Message.js";
export default class extends AbstractView { export default class extends AbstractView {
constructor(params) { constructor(params) {