Skip to content

Commit

Permalink
Update ESLint configuration and .prettierignore for improved project …
Browse files Browse the repository at this point in the history
…structure
  • Loading branch information
jeremytenjo committed Jan 31, 2025
1 parent 39e584e commit e087e16
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 12 deletions.
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
build
out
out
dist
16 changes: 5 additions & 11 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,25 +1,19 @@
/**
* ESLint configuration for the project.
*
*
* See https://eslint.style and https://typescript-eslint.io for additional linting options.
*/
// @ts-check
import js from '@eslint/js';
import tseslint from 'typescript-eslint';
import js from '@eslint/js'
import tseslint from 'typescript-eslint'

export default tseslint.config(
{
ignores: [
"out",
"dist",
"scripts"
]
ignores: ['out', 'dist', 'scripts'],
},
js.configs.recommended,
...tseslint.configs.recommended,
);


)

// {
// "env": {
Expand Down

0 comments on commit e087e16

Please sign in to comment.