Skip to content
Open
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
template: post
title: Integrating ESLint and Prettify with Node Projects
socialImage: /media/eslint.jpg
socialImageAlt: package.json development dependencies
slug: integrating-eslint-and-prettify-with-node-projects
draft: true
date: 2020-03-09T14:04:49.791Z
description: >-
A quick guide to help integrate ESLint and Prettify with NodeJS projects in
Visual Studio Code.
category: Software Development
tags:
- nodejs eslint prettify vscode
---


### Setting up Node version for ESLint

To set a minimum version of Node ESLint should lint for, we need to add an **engines** property to our **package.json** file. Simply replace the version with your desired version in the snippet below.

```
"engines": {
"node": ">=13.0.0"
}
```
Binary file added static/media/eslint.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.