Skip to content

Commit

Permalink
fix: fixing linting
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljolley committed Jan 17, 2025
1 parent aae8177 commit 714d0cb
Show file tree
Hide file tree
Showing 4 changed files with 115 additions and 66 deletions.
32 changes: 0 additions & 32 deletions eslint.config.js

This file was deleted.

23 changes: 23 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import eslint from '@eslint/js';

Check failure on line 1 in eslint.config.mjs

View workflow job for this annotation

GitHub Actions / test (macos-latest, 1.96.0)

'eslint' is defined but never used

Check failure on line 1 in eslint.config.mjs

View workflow job for this annotation

GitHub Actions / test (macos-latest, stable)

'eslint' is defined but never used

Check failure on line 1 in eslint.config.mjs

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest, stable)

'eslint' is defined but never used

Check failure on line 1 in eslint.config.mjs

View workflow job for this annotation

GitHub Actions / test (windows-latest, stable)

'eslint' is defined but never used

Check failure on line 1 in eslint.config.mjs

View workflow job for this annotation

GitHub Actions / test (windows-latest, 1.96.0)

'eslint' is defined but never used

Check failure on line 1 in eslint.config.mjs

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest, 1.96.0)

'eslint' is defined but never used
import tseslint from 'typescript-eslint';

export default tseslint.config(
tseslint.configs.recommended,
{
"rules": {
"curly": "warn",
"eqeqeq": "warn",
"no-throw-literal": "warn",
"semi": "off"
},
"ignores": [
"out/**/*.js",
"dist",
"**/*.d.ts",
"**/*.js"
],
"files": [
"src/**/*.ts"
],
}
);
Loading

0 comments on commit 714d0cb

Please sign in to comment.