Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Eslint config alpha version merge with master #145

Merged
merged 19 commits into from
Apr 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
29367f4
chore(deps): update dependency eslint to v8.41.0 (#125)
renovate[bot] May 26, 2023
0ed9838
chore(deps): update dependency eslint to v8.44.0 (#126)
renovate[bot] Jul 6, 2023
5c6f051
chore(deps): update dependency eslint-plugin-import to v2.28.0
renovate[bot] Jul 31, 2023
272e3ce
chore(deps): update dependency eslint-plugin-react to v7.33.1
renovate[bot] Jul 30, 2023
e98ce52
chore(deps): update dependency eslint to v8.47.0
renovate[bot] Aug 11, 2023
dfd207c
refactor: updated lock file version check to use new workflow (#133)
Mashal-m Sep 6, 2023
b38aafb
chore(deps): update dependency eslint to v8.50.0
renovate[bot] Sep 22, 2023
c9d26aa
chore(deps): update dependency eslint-plugin-react to v7.33.2
renovate[bot] Sep 6, 2023
207c628
chore(deps): update dependency eslint-plugin-import to v2.28.1
renovate[bot] Sep 6, 2023
eae9100
chore(deps): update dependency eslint to v8.51.0
renovate[bot] Oct 9, 2023
183fc13
chore(deps): update dependency eslint-plugin-jsx-a11y to v6.8.0
renovate[bot] Nov 6, 2023
b89a4b3
chore(deps): update actions/setup-node action to v4 (#139)
renovate[bot] Jan 11, 2024
9310d95
chore(deps): update dependency eslint-plugin-import to v2.29.1
renovate[bot] Jan 11, 2024
1580e57
chore(deps): update dependency eslint to v8.56.0
renovate[bot] Jan 11, 2024
a76103d
chore(deps): update actions/checkout action to v4 (#134)
renovate[bot] Jan 11, 2024
cec7ed6
Merge branch 'master' of https://github.com/openedx/eslint-config int…
BilalQamar95 Mar 25, 2024
a7de00d
refactor: updated package-lock
BilalQamar95 Mar 27, 2024
820434a
refactor: updated typescript-eslint parser & plugin
BilalQamar95 Apr 5, 2024
1bcf6c7
refactor: updated package-lock
BilalQamar95 Apr 5, 2024
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Nodejs Env
run: echo "NODE_VER=`cat .nvmrc`" >> $GITHUB_ENV
- name: Setup Nodejs
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VER }}
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lockfileversion-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ on:

jobs:
version-check:
uses: openedx/.github/.github/workflows/lockfileversion-check-v3.yml@master
uses: openedx/.github/.github/workflows/lockfile-check.yml@master
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Nodejs Env
run: echo "NODE_VER=`cat .nvmrc`" >> $GITHUB_ENV
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VER }}
- name: Install dependencies
Expand Down
Loading