Skip to content

Commit 58eb9bb

Browse files
committed
Add ESLint configuration, update demo documentation, and enhance README
1 parent bcb9103 commit 58eb9bb

File tree

5 files changed

+733
-351
lines changed

5 files changed

+733
-351
lines changed

.eslintrc.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"parser": "@typescript-eslint/parser",
3+
"parserOptions": {
4+
"ecmaVersion": "latest",
5+
"sourceType": "module"
6+
}
7+
}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
[DSSSP](https://dsssp.io) is a React component library for visualizing and managing audio filters. These components are designed to serve as the core UI elements of audio editing tools and interfaces, enabling users to interactively configure all filter parameters. Essentially, it is a conversion of proprietary audio processing and visualization tools from professional desktop software to a web-based environment.
1212

13-
The library's rendering system is based on SVG and provides a logarithmic frequency graph for audio spectrum representation, a set of components to render and manipulate biquad filters, and mathematical functions to calculate the resulting signal curve. Filters support drag-and-drop interactions, direct property updates (**gain**, **frequency**, **Q-factor**), and implement common audio filter types.
13+
The library's rendering system is based on SVG and provides a logarithmic frequency graph for audio spectrum representation, a set of components to render and manipulate biquad filters, and mathematical functions to calculate the resulting signal curve. Filters support drag-and-drop and mouse wheel interactions, direct property updates (**Gain**, **Frequency**, **Q-Factor**), and implement common audio filter types.
1414

1515
## Installation
1616

@@ -26,7 +26,7 @@ Visit [dsssp.io/docs](https://dsssp.io/docs/) to view the full documentation.
2626

2727
## Examples
2828

29-
Our documentation includes a full-scale [demo project](https://numberonebot.github.io/dsssp-demo/) that showcases each library component across various use cases and provides a starting point for your own projects.
29+
Our documentation includes a full-scale [demo project](https://numberonebot.github.io/dsssp-demo/) that showcases each library component across various use cases and provides a starting point for your own projects. The source code of the demo is available in its own [repository](https://github.com/numberonebot/dsssp-demo).
3030

3131
## Licensing
3232

0 commit comments

Comments
 (0)