Skip to content

Commit 5dfdc32

Browse files
committed
Transfer from hilbert-transform repo
0 parents  commit 5dfdc32

32 files changed

+1519
-0
lines changed

.eslintignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
build
2+
esm
3+
node_modules

.eslintrc.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
extends: 'spruce',
3+
}

.gitignore

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Logs
2+
*.log
3+
npm-debug.log*
4+
yarn-debug.log*
5+
yarn-error.log*
6+
7+
# Runtime data
8+
pids
9+
*.pid
10+
*.seed
11+
*.pid.lock
12+
13+
# Dependency directories
14+
node_modules/
15+
16+
# Optional npm cache directory
17+
.npm
18+
19+
# Optional eslint cache
20+
.eslintcache
21+
22+
# Optional REPL history
23+
.node_repl_history
24+
25+
# Output of 'npm pack'
26+
*.tgz
27+
28+
# Yarn Integrity file
29+
.yarn-integrity
30+
31+
# dotenv environment variables file
32+
.env
33+
.env.*
34+
.env-*
35+
36+
# macOS files
37+
.DS_Store
38+
39+
# Rejected "git apply" patch files
40+
*.rej
41+
42+
/build/
43+
esm/
44+
45+
tmp/
46+
47+
yarn.lock
48+
package-lock.json

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
lts/*

.vscode/launch.json

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"type": "node",
6+
"request": "attach",
7+
"name": "attach.tests",
8+
"port": 5200,
9+
"restart": true,
10+
"timeout": 10000
11+
},
12+
{
13+
"type": "node",
14+
"request": "launch",
15+
"name": "test.file",
16+
"runtimeExecutable": "node",
17+
"runtimeArgs": [
18+
"--inspect-brk",
19+
"--trace-warnings",
20+
"${workspaceFolder}/node_modules/.bin/jest",
21+
"${fileBasenameNoExtension}",
22+
"--detectOpenHandles"
23+
],
24+
"cwd": "${workspaceFolder}",
25+
"console": "integratedTerminal",
26+
"internalConsoleOptions": "neverOpen"
27+
},
28+
{
29+
"type": "node",
30+
"request": "launch",
31+
"name": "test.all",
32+
"runtimeExecutable": "node",
33+
"runtimeArgs": [
34+
"--inspect-brk",
35+
"--trace-warnings",
36+
"${workspaceFolder}/node_modules/.bin/jest"
37+
],
38+
"cwd": "${workspaceFolder}",
39+
"console": "integratedTerminal",
40+
"internalConsoleOptions": "neverOpen"
41+
},
42+
{
43+
"type": "node",
44+
"request": "launch",
45+
"name": "boot",
46+
"runtimeExecutable": "yarn",
47+
"runtimeArgs": [
48+
"run",
49+
"--inspect-brk",
50+
"--trace-warnings",
51+
"boot"
52+
],
53+
"cwd": "${workspaceFolder}",
54+
"console": "integratedTerminal",
55+
"internalConsoleOptions": "neverOpen"
56+
}
57+
]
58+
}

.vscode/settings.json

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
{
2+
"debug.node.autoAttach": "on",
3+
"git.ignoreLimitWarning": true,
4+
"javascript.validate.enable": false,
5+
"editor.formatOnSave": true,
6+
"files.watcherExclude": {
7+
"**/.git/objects/**": true,
8+
"**/.git/subtree-cache/**": true,
9+
"**/build/**": true,
10+
"**/node_modules/**": true,
11+
},
12+
"search.exclude": {
13+
"**/build/**": true,
14+
"**/node_modules/**": true,
15+
"**/.next/**": true
16+
},
17+
"editor.maxTokenizationLineLength": 20000000,
18+
"eslint.enable": true,
19+
"eslint.validate": [
20+
"javascript",
21+
"javascriptreact",
22+
"typescript",
23+
"typescriptreact"
24+
],
25+
"[javascript]": {
26+
"editor.formatOnSave": false
27+
},
28+
"[javascriptreact]": {
29+
"editor.formatOnSave": false
30+
},
31+
"[typescript]": {
32+
"editor.formatOnSave": false
33+
},
34+
"[typescriptreact]": {
35+
"editor.formatOnSave": false
36+
},
37+
"[handlebars]": {
38+
"editor.formatOnSave": false
39+
},
40+
"eslint.options": {
41+
"extensions": [
42+
".js",
43+
".jsx",
44+
".ts",
45+
".tsx"
46+
]
47+
},
48+
"typescript.tsdk": "node_modules/typescript/lib",
49+
"editor.codeActionsOnSave": {
50+
"source.fixAll.eslint": true
51+
},
52+
"cSpell.ignorePaths": [
53+
"**/package-lock.json",
54+
"**/node_modules/**",
55+
"**/build/**",
56+
"**/vscode-extension/**",
57+
"**/.git/objects/**",
58+
".vscode",
59+
".spruce"
60+
],
61+
"cSpell.words": [
62+
"arkit",
63+
"autogenerated",
64+
"scrollable",
65+
"serializable"
66+
],
67+
"debug.javascript.unmapMissingSources": true,
68+
"javascript.preferences.importModuleSpecifier": "relative",
69+
"typescript.preferences.importModuleSpecifier": "relative"
70+
}

.vscode/tasks.json

+112
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"type": "npm",
6+
"script": "watch.build.dev",
7+
"group": "build",
8+
"label": "watch.build.dev & problem.watcher",
9+
"isBackground": true,
10+
"runOptions": {
11+
"runOn": "folderOpen"
12+
},
13+
"promptOnClose": false,
14+
"presentation": {
15+
"focus": false,
16+
"reveal": "never"
17+
},
18+
"problemMatcher": {
19+
"base": "$tsc-watch",
20+
"applyTo": "allDocuments"
21+
}
22+
},
23+
{
24+
"label": "test.file",
25+
"command": "spruce",
26+
"args": [
27+
"test",
28+
"--inspect",
29+
"5200",
30+
"--pattern",
31+
"${fileBasenameNoExtension}",
32+
"--watchMode",
33+
"standard"
34+
],
35+
"promptOnClose": false,
36+
"group": {
37+
"kind": "test",
38+
"isDefault": true
39+
},
40+
"presentation": {
41+
"reveal": "always",
42+
"panel": "dedicated",
43+
},
44+
"problemMatcher": []
45+
},
46+
{
47+
"label": "test.reporter",
48+
"command": "spruce",
49+
"args": [
50+
"test",
51+
"--shouldHoldAtStart",
52+
"true",
53+
"--watchMode",
54+
"smart"
55+
],
56+
"promptOnClose": false,
57+
"group": "test",
58+
"runOptions": {
59+
"runOn": "folderOpen"
60+
},
61+
"presentation": {
62+
"panel": "shared",
63+
"focus": true,
64+
"reveal": "always"
65+
}
66+
},
67+
{
68+
"label": "spruce",
69+
"type": "shell",
70+
"command": "spruce ${input:spruceCommand}",
71+
"problemMatcher": [],
72+
"presentation": {
73+
"reveal": "always",
74+
"focus": true,
75+
"panel": "new",
76+
"clear": false
77+
}
78+
},
79+
{
80+
"label": "shell",
81+
"type": "shell",
82+
"command": "${input:command} ${input:optionsCommand}",
83+
"problemMatcher": [],
84+
"presentation": {
85+
"reveal": "always",
86+
"focus": true,
87+
"panel": "new",
88+
"clear": false
89+
}
90+
}
91+
],
92+
"inputs": [
93+
{
94+
"id": "spruceCommand",
95+
"description": "spruce command",
96+
"default": "create.test",
97+
"type": "promptString"
98+
},
99+
{
100+
"id": "command",
101+
"description": "command",
102+
"default": "yarn",
103+
"type": "promptString"
104+
},
105+
{
106+
"id": "optionsCommand",
107+
"description": "optionsCommand",
108+
"default": "add",
109+
"type": "promptString"
110+
}
111+
]
112+
}

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2023 Eric Yates
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# node-signal-proccessing
2+
Digital signal processing algorithms on Node

0 commit comments

Comments
 (0)