-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.3 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"scripts": {
"check": "tsc",
"grammar:watch": "ts-node-dev --quiet --watch ./src/esp/textmate-grammar-builder/build.ts --respawn ./bin/esp.ts --build-grammar \"%HOMEPATH%/AppData/Local/Programs/Microsoft VS Code/resources/app/extensions/esp/syntaxes/esp.tmLanguage.json,./dist/esp.tmLanguage.json\"",
"lint": "eslint src",
"start:watch": "ts-node-dev --quiet --respawn --watch ./src,./.test.esp ./bin/esp.ts ./.test.esp",
"start": "ts-node-dev --quiet --watch ./src,./.test.esp ./bin/esp.ts ./.test.esp",
"test": "vitest"
},
"devDependencies": {
"@robinblomberg/eslint-config-prettier": "^0.1.4",
"@robinblomberg/eslint-config-robinblomberg": "^0.14.0",
"@types/node": "^18.15.12",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"vitest": "^0.29.8"
},
"eslintConfig": {
"extends": [
"@robinblomberg/eslint-config-robinblomberg",
"@robinblomberg/eslint-config-prettier"
],
"rules": {
"@typescript-eslint/no-magic-numbers": 0,
"@typescript-eslint/no-non-null-asserted-optional-chain": 0,
"@typescript-eslint/prefer-nullish-coalescing": 0,
"curly": 0,
"import/exports-last": 0,
"max-classes-per-file": 0,
"no-template-curly-in-string": 0,
"no-unreachable": 0,
"sort-keys/sort-keys-fix": 0
}
}
}