Skip to content

Set up black and pylint for Python #29

Set up black and pylint for Python

Set up black and pylint for Python #29

Workflow file for this run

name: ESLint
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install ESLint and plugins
run: npm install eslint babel-eslint eslint-plugin-import
- name: Create ESLint config
run: echo module.exports = {} > .eslintrc.js
- name: Run ESLint
run: npx eslint .