Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 0 additions & 22 deletions .github/SECURITY.md

This file was deleted.

4 changes: 0 additions & 4 deletions .github/SUPPORT.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,6 @@ A good bug report shouldn't leave others needing to chase you up for more inform

### Submitting a Good Bug Report

> You must never report security related issues, vulnerabilities or bugs including sensitive information to the issue tracker, or elsewhere in public. Instead use the GitHub [Security Advisory section][security-advisory-section] for sensitive bugs, check the [security guidelines][security-guidelines] for more info.

Bug reports are tracked as [GitHub Issues][issue-tracker-bugs]. To submit a new bug report:

1. Open a Bug Report [issue][new-bug-issue].
Expand Down Expand Up @@ -92,8 +90,6 @@ You may always make enhancement suggestions through the [Discord server support
[discord-server-support-channel]: https://discord.com/channels/965890377896845352/1348101489863688266
[discord-server]: https://discord.gg/inkdex
[issue-tracker-bugs]: https://github.com/inkdex/inkdex.github.io/issues?q=is%3Aissue+is%3Aopen+label%3Abug
[security-advisory-section]: https://github.com/inkdex/inkdex.github.io/security/advisories
[security-guidelines]: https://github.com/inkdex/inkdex.github.io?tab=security-ov-file
[new-bug-issue]: https://github.com/inkdex/inkdex.github.io/issues/new?template=bug.yaml
[issue-tracker-enhancements]: https://github.com/inkdex/inkdex.github.io/issues?q=label%3Aenhancement
[new-enhancement-issue]: https://github.com/inkdex/inkdex.github.io/issues/new?template=enhancement.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: Build and Deploy

on:
push:
branches:
- "master"

permissions:
contents: write
Expand Down
1 change: 1 addition & 0 deletions .husky/pre-push
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
npm test
13 changes: 0 additions & 13 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,16 +1,3 @@
Inkdex Website
Copyright (C) 2025 Inkdex

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007

Expand Down
21 changes: 8 additions & 13 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,33 +1,28 @@
// @ts-check

import eslint from "@eslint/js";
import pluginVue from "eslint-plugin-vue";
import { defineConfig } from "eslint/config";
import tseslint from "typescript-eslint";

export default tseslint.config(
{
extends: [eslint.configs.recommended],
files: ["**/*{.js,.ts}"],
languageOptions: {
ecmaVersion: "latest",
sourceType: "module",
},
},
export default defineConfig(
eslint.configs.recommended,
{
extends: [...tseslint.configs.recommendedTypeChecked],
files: ["src/.vitepress/**/*.ts"],
files: ["**/*.ts"],
languageOptions: {
parser: tseslint.parser,
parserOptions: {
projectService: true,
tsconfigRootDir: import.meta.dirname,
},
},
rules: {
"@typescript-eslint/require-await": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{ varsIgnorePattern: "^_" },
],
},
},
pluginVue.configs["flat/recommended"],
{
ignores: ["src/.vitepress/cache", "src/.vitepress/dist"],
},
Expand Down
Loading