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 18, 2025
1 parent 714d0cb commit 9ba2cb8
Show file tree
Hide file tree
Showing 9 changed files with 64 additions and 136 deletions.
25 changes: 11 additions & 14 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,23 +1,20 @@
// @ts-check

import eslint from '@eslint/js';
import tseslint from 'typescript-eslint';

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

0 comments on commit 9ba2cb8

Please sign in to comment.