0.0.6 • Published 4 years ago

eslint-config-thedeltastudio v0.0.6

Weekly downloads
16
License
MIT
Repository
github
Last release
4 years ago

eslint-config-thedeltastudio

package version package downloads standard-readme compliant package license make a pull request

ESLint & Prettier config for The Delta Studio

Table of Contents

About

Shareable configs are designed to work with the extends feature of eslint files. You can learn more about shareable configs on the official ESLint website.

Install

This project uses node and npm.

$ npx install-peerdeps --dev eslint-config-thedeltastudio

Usage

Add this to your .eslintrc file in the root of your project:

{
	"extends": "eslint-config-thedeltastudio"
}

then add this to your .prettierrc file in the root of your project

{
	"semi": false,
	"singleQuote": true,
	"tabWidth": 4,
	"useTabs": true,
	"trailingComma": "none"
}

Then add the scripts to your package.json:

"scripts": {
  "lint": "eslint .",
  "lint:fix": "eslint . --fix"
},

Add Badge delta-code-style

[![delta-code-style](https://img.shields.io/badge/code%20style-delta-121742.svg?style=flat-square)](https://www.thedelta.io/)

Contribute

  1. Fork it and create your feature branch: git checkout -b my-new-feature
  2. Commit your changes: git commit -am "Add some feature"
  3. Push to the branch: git push origin my-new-feature
  4. Submit a pull request

License

MIT © The Delta Studio