Skip to content

Instantly share code, notes, and snippets.

View KeithBrown39423's full-sized avatar
💻

Keith Brown KeithBrown39423

💻
View GitHub Profile
import globals from "globals";
import pluginJs from "@eslint/js";
import tseslint from "typescript-eslint";
export default [
{ files: ["**/*.{js,mjs,cjs,ts}"] },
{ languageOptions: { globals: globals.node } },
pluginJs.configs.recommended,
...tseslint.configs.recommended,
#include <cmath>
#include <string>
class Vector3 {
public:
Vector3(float a);
Vector3(float x, float y, float z);
float x, y, z;