/base

Template for starting projects with eslint, prettier, and other configs set up.

Primary LanguageJavaScript

Base 📏

A minimalist JS/Node template repository with ESLint, Prettier, and other configs set up.

What's included

  • ESLint for JavaScript linting
  • Prettier for code formatting

What's not included

  • A testing framework
  • Build tooling

Use

  1. Navigate to https://github.com/nickFalcone/base
  2. Select Use this template
  3. Name your new repository
  4. Clone your repository $ git clone git@github.com:userName/repoName.git
  5. Install dependencies $ npm install --save-dev

The only development dependencies are:

"devDependencies": {
  "eslint": "^7.18.0",
  "eslint-config-airbnb-base": "^14.2.1",
  "eslint-plugin-import": "^2.22.1",
  "prettier": "2.2.1"
}

Feedback

Please open a new issue for fixes or enhancements. PRs welcome too!