-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
13 lines (13 loc) · 810 Bytes
/
package.json
File metadata and controls
13 lines (13 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
{
"name": "fitfileviewer-root",
"private": true,
"scripts": {
"lint": "npm run lint:root && npm run lint:electron-app && npm run lint:docusaurus",
"lint:electron-app": "cd electron-app && npm run lint",
"lint:docusaurus": "cd docusaurus && npm run lint",
"lint:docusaurus:content": "cd docusaurus && npm run lint:content",
"lint:fix": "npm run lint",
"lint:root": "cd electron-app && npm exec eslint -- --cache --cache-strategy content --cache-location .cache/.eslintcache-root --fix .. --ignore-pattern \"electron-app/**\" --ignore-pattern \"docusaurus/**\"",
"lint:root:check": "cd electron-app && npm exec eslint -- --cache --cache-strategy content --cache-location .cache/.eslintcache-root .. --ignore-pattern \"electron-app/**\" --ignore-pattern \"docusaurus/**\""
}
}