Commit 9a42eba3 authored by blackheaven's avatar blackheaven
Browse files

Initial commit

parents
Loading
Loading
Loading
Loading

.editorconfig

0 → 100644
+12 −0
Original line number Diff line number Diff line
# editorconfig.org

root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
 No newline at end of file

.eslintignore

0 → 100644
+5 −0
Original line number Diff line number Diff line
assets/js/index.js
assets/js/katex.js
assets/js/vendor
node_modules
 No newline at end of file

.eslintrc.json

0 → 100644
+32 −0
Original line number Diff line number Diff line
{
  "env": {
    "browser": true,
    "commonjs": true,
    "es6": true,
    "node": true
  },
  "extends": "eslint:recommended",
  "globals": {
    "Atomics": "readonly",
    "SharedArrayBuffer": "readonly"
  },
  "parserOptions": {
    "ecmaVersion": 2018,
    "sourceType": "module"
  },
  "rules": {
    "no-console": 0,
    "quotes": ["error", "single"],
    "comma-dangle": [
      "error",
      {
        "arrays": "always-multiline",
        "objects": "always-multiline",
        "imports": "always-multiline",
        "exports": "always-multiline",
        "functions": "ignore"
      }
    ]
  }
}
 No newline at end of file

.github/FUNDING.yml

0 → 100644
+12 −0
Original line number Diff line number Diff line
# These are supported funding model platforms

github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: # Replace with a single Patreon username
open_collective: doks # Replace with a single Open Collective username
ko_fi: # Replace with a single Ko-fi username
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
liberapay: # Replace with a single Liberapay username
issuehunt: # Replace with a single IssueHunt username
otechie: # Replace with a single Otechie username
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
+25 −0
Original line number Diff line number Diff line
---
name: "Bug report \U0001F41E"
about: Create a report to help us improve

---

## Description

Describe the issue that you're seeing.

### Steps to reproduce

Clear steps describing how to reproduce the issue. Please please please link to a demo project if possible, this makes your issue _much_ easier to diagnose (seriously).

### Expected result

What should happen?

### Actual result

What happened.

### Environment

Paste the information here as shown by `npm run check`