Skip to content

Commit

Permalink
Merge branch 'main' into support-script-receiver
Browse files Browse the repository at this point in the history
  • Loading branch information
h2physics committed Sep 9, 2024
2 parents 31acbde + 807cc5b commit bacd009
Show file tree
Hide file tree
Showing 30 changed files with 7,951 additions and 2,874 deletions.
36 changes: 0 additions & 36 deletions .eslintrc.cjs

This file was deleted.

5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18.x
- name: Install dependencies
Expand All @@ -24,5 +24,6 @@ jobs:
run: npm run test
env:
BLOCKFROST_PROJECT_ID_MAINNET: ${{ secrets.BLOCKFROST_PROJECT_ID_MAINNET }}
BLOCKFROST_PROJECT_ID_TESTNET: ${{ secrets.BLOCKFROST_PROJECT_ID_TESTNET }}
- name: Check format & lint
run: npm run check-format
47 changes: 47 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
// @ts-check

import { includeIgnoreFile } from "@eslint/compat";
import path from "node:path";
import { fileURLToPath } from "node:url";
import eslint from "@eslint/js";
import simpleImportSort from "eslint-plugin-simple-import-sort";
import eslintPluginUnicorn from "eslint-plugin-unicorn";
import unusedImports from "eslint-plugin-unused-imports";
import tseslint from "typescript-eslint";

const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
const gitignorePath = path.resolve(__dirname, ".gitignore");

export default tseslint.config(
includeIgnoreFile(gitignorePath),
eslint.configs.recommended,
...tseslint.configs.recommended,
{
plugins: {
"unused-imports": unusedImports,
"simple-import-sort": simpleImportSort,
unicorn: eslintPluginUnicorn,
},
rules: {
"simple-import-sort/imports": "error",
"simple-import-sort/exports": "error",
"no-unused-vars": "off", // or "@typescript-eslint/no-unused-vars": "off",
"unused-imports/no-unused-imports": "error",
"unused-imports/no-unused-vars": [
"warn",
{
vars: "all",
varsIgnorePattern: "^_",
args: "after-used",
argsIgnorePattern: "^_",
},
],
"@typescript-eslint/no-unused-vars": "off",
"@typescript-eslint/no-namespace": "off",
"unicorn/better-regex": "error",
"unicorn/no-array-for-each": "error",
"unicorn/prefer-regexp-test": "error",
},
}
);
Loading

0 comments on commit bacd009

Please sign in to comment.