Skip to content

Commit 3231a65

Browse files
committed
Update project configuration and assets
- Simplify ESLint configuration by removing unused globals - Update logo.png for documentation site - Add docs build artifacts to .gitignore
1 parent f5d553a commit 3231a65

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
.DS_Store
22
.claude/
33
CLAUDE.md
4+
cache/
45
coverage/
56
dist/
6-
node_modules/
7+
node_modules/

eslint.config.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,14 @@
11
import tseslint from 'typescript-eslint';
2-
import globals from 'globals';
32

43
export default tseslint.config(
54
...tseslint.configs.strict,
65
...tseslint.configs.stylistic,
76
{
7+
files: ['**/*.ts'],
88
languageOptions: {
99
ecmaVersion: 2021,
1010
sourceType: 'module',
1111
globals: {
12-
...globals.browser,
13-
...globals.node
1412
},
1513
parserOptions: {
1614
project: './tsconfig.json',

logo.png

-69.8 KB
Loading

0 commit comments

Comments
 (0)