Home

Awesome

Anti-cheat frontend

Version 0.3.3
Frontend template for an anti-cheat ban database (Unfinished)

Made as part of the Quack project

Project styleguide

General

Naming

const CONSTANT_GLOBAL    
static CONSTANT_STATIC    

var localVariable    
const localConst    
let blockVariable    
let #_privateVariable    

let longLiteralNumber = 1_000_000    

Functions

// File global
function PascalCase(args) {
    // Code
}

// Otherwise
const functionPtr = () => {
    // Code
}

Classes

class PascalCase {
    // Code
}