Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ui/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

Web UI for [Argo CD](https://github.com/argoproj/argo-cd).


## Getting started

1. Install [NodeJS](https://nodejs.org/en/download/) and [Yarn](https://yarnpkg.com). On macOS with [Homebrew](https://brew.sh/), running `brew install node yarn` will accomplish this.
Expand All @@ -20,7 +19,7 @@ To do the same and push to a Docker registry, run `IMAGE_NAMESPACE=yourimagerepo

Make sure your code passes the lint checks:

```
```bash
yarn lint --fix
```

Expand All @@ -29,6 +28,7 @@ If you are using VSCode, add this configuration to `.vscode/settings.json` in th
Install [Eslint Extension](https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint) in VSCode.

`.vscode/settings.json`

```json
{
"eslint.format.enable": true,
Expand All @@ -41,6 +41,6 @@ Install [Eslint Extension](https://marketplace.visualstudio.com/items?itemName=d
"!cwd": false
}
],
"eslint.experimental.useFlatConfig": true
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

https://marketplace.visualstudio.com/items?itemName=dbaeumer.vscode-eslint

The experimental settings eslint.experimental.useFlatConfig is deprecated and should only be used for ESLint versions >= 8.21 < 8.57.0.

I checked the release note and lgtm

"eslint.useFlatConfig": true
}
```
Loading