Skip to content

Commit

Permalink
WIP: fix: resolve eslint findings #54
Browse files Browse the repository at this point in the history
  • Loading branch information
flamingquaks committed May 22, 2024
1 parent 02495fe commit 9d35cb7
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 4 deletions.
1 change: 1 addition & 0 deletions cli/config-manage.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable no-constant-condition */
import * as fs from 'fs'
import { type DeployConfig } from '../lib/shared/common/deploy-config'
import { formatText } from './consts'
Expand Down
1 change: 1 addition & 0 deletions lib/shared/api/API.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/* tslint:disable */
/* eslint-disable */
// This file was automatically generated and should not be edited.

export type CreateDataFeedInput = {
Expand Down
63 changes: 60 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"build:ui": "cd lib/user-interface/genai-newsletter-ui/ && vite build",
"build:appsync": "ts-node ./lib/api/functions/bundle.ts",
"watch": "tsc -w",
"lint": "eslint . --fix --ext .ts,.tsx --report-unused-disable-directives",
"lint": "eslint . --config .eslintrc.json --ext .js,.jsx,.ts,.tsx --format @microsoft/eslint-formatter-sarif --output-file eslint-results.sarif --fix",
"prettier": "prettier --write \"**/*.{ts,tsx}\"",
"format": "npm run prettier && npm run lint",
"test": "jest",
Expand Down Expand Up @@ -70,6 +70,7 @@
"ts-node": "^10.9.2",
"typescript": "5.3",
"vite": "^5.0.12",
"vite-plugin-eslint": "^1.8.1",
"vitepress": "^1.1.4"
},
"dependencies": {
Expand Down

0 comments on commit 9d35cb7

Please sign in to comment.