Skip to content

Commit

Permalink
Removed Twitter. Aded Bluesky.
Browse files Browse the repository at this point in the history
  • Loading branch information
arodic committed Nov 26, 2024
1 parent df3c003 commit 236ee13
Show file tree
Hide file tree
Showing 9 changed files with 1,632 additions and 131 deletions.
1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

61 changes: 0 additions & 61 deletions .eslintrc.json

This file was deleted.

16 changes: 10 additions & 6 deletions build/index.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions docs/contact.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Get in touch:
## Get in touch:

<a href="https://github.com/arodic/" rel="me" target="_blank">GitHub</a>

<a href="https://mastodon.gamedev.place/@aki" target="_blank">Mastodon</a>

<a href="https://twitter.com/akirodic/" rel="me" target="_blank">Twitter</a>
<a href="https://bsky.app/profile/akirodic.com" rel="me" target="_blank">Bluesky</a>

<a href="https://vimeo.com/user1857580/" rel="me" target="_blank">Vimeo</a>

Expand Down
55 changes: 55 additions & 0 deletions eslint.typescript.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
import js from "@eslint/js";
import tseslint from 'typescript-eslint'
import tsParser from "@typescript-eslint/parser";
import globals from "globals";

export default tseslint.config(
{
languageOptions: {
ecmaVersion: 2022,
sourceType: "module",
globals: {
...globals.browser,
'it': true,
'describe': true,
'chai': true,
'mocha': true,
'hljs': true
},
parser: tsParser,
parserOptions: {
project: "./tsconfig.json"
}
},
files: ['**/*.ts'],
extends: [
js.configs.recommended,
tseslint.configs.base
],
plugins: {},
rules: {
'no-debugger': 'error',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-non-null-assertion' : 'off',
'@typescript-eslint/consistent-type-assertions': 'error',
'@typescript-eslint/no-floating-promises': 'warn',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-unused-vars': 'warn',
'@typescript-eslint/no-empty-function': 'warn',
'no-unused-labels': 'off',
'no-unused-vars': 'warn',
'no-var': 'error',
'eqeqeq': 'error',
'no-trailing-spaces': 'error',
'semi': 'error',
'strict': 'error',
'quotes': ['error', 'single'],
}
},
{
files: ['**/*.test.ts'],
rules: {
'@typescript-eslint/no-empty-function': 'off',
}
},
)
30 changes: 15 additions & 15 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
"name": "arodic.github.com",
"version": "1.0.11",
"version": "1.1.0",
"type": "module",
"packageManager": "[email protected]",
"description": "Personal Website of Aki Rodic",
"main": "build/index.js",
"module": "build/index.js",
"typings": "build/index.d.ts",
"type": "module",
"files": [
"/src/",
"/build/",
Expand All @@ -18,9 +19,9 @@
"sideEffects": false,
"scripts": {
"clean": "rm -rf build && rm -rf bundle",
"lint": "eslint src --fix",
"build": "yarn clean && yarn lint && tsc && rollup -c && rm -rf build && mv bundle build",
"dev": "yarn clean && yarn lint && tsc -w"
"lint": "eslint -c ./eslint.typescript.js src --fix",
"build": "pnpm clean && pnpm lint && tsc && rollup -c && rm -rf build && mv bundle build",
"dev": "pnpm clean && pnpm lint && tsc -w"
},
"repository": {
"type": "git",
Expand All @@ -33,16 +34,15 @@
},
"homepage": "https://akirodic.com",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/gtag.js": "^0.0.8",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"eslint-plugin-html": "^7.1.0",
"io-gui": "1.4.0-rc6",
"rollup": "^3.5.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.1",
"typescript": "^4.9.3"
"eslint": "^9.7.0",
"eslint-plugin-html": "^8.1.1",
"io-gui": "1.4.0-rc9",
"rollup": "^4.18.1",
"tslib": "^2.6.3",
"typescript": "^5.5.3",
"typescript-eslint": "^7.16.1"
}
}
Loading

0 comments on commit 236ee13

Please sign in to comment.