Skip to content

Commit

Permalink
Bumping dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
JonahKr committed Jul 2, 2024
1 parent 3bef10c commit cef4fff
Show file tree
Hide file tree
Showing 6 changed files with 3,394 additions and 7,712 deletions.
16 changes: 0 additions & 16 deletions .eslintrc.js

This file was deleted.

3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"typescript.tsdk": "node_modules/typescript/lib"
}
33 changes: 33 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
import tsParser from "@typescript-eslint/parser";
import path from "node:path";
import { fileURLToPath } from "node:url";
import js from "@eslint/js";
import { FlatCompat } from "@eslint/eslintrc";

const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const compat = new FlatCompat({
baseDirectory: __dirname,
recommendedConfig: js.configs.recommended,
allConfig: js.configs.all
});

export default [...compat.extends(
"plugin:@typescript-eslint/recommended",
"prettier",
"plugin:prettier/recommended",
), {
languageOptions: {
parser: tsParser,
ecmaVersion: 2018,
sourceType: "module",

parserOptions: {
experimentalDecorators: true,
},
},

rules: {
"@typescript-eslint/camelcase": 0,
},
}];
Loading

0 comments on commit cef4fff

Please sign in to comment.