Skip to content

Refactoring the code to match the styles enforced by Lint #1

Refactoring the code to match the styles enforced by Lint

Refactoring the code to match the styles enforced by Lint #1

Workflow file for this run

name: ESLint
on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
jobs:
eslint:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install ESLint
run: npm install [email protected] @microsoft/[email protected]
- name: Run ESLint
run: npx eslint . --ext .js --config .eslintrc.json