1.0.0 • Published 6 years ago

eslint-plugin-efficient v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

eslint-plugin-efficient

Build Status PRs Welcome Code with love by Flexare

NPM package version NPM package license

Efficient ESLint plugin and configuration with the focus on the best practice of software performance and optimisations for modern JavaScript projects.

This is a ESLint plugin and configuration that focuses mainly on the best practice of software performance and optimisations, has rules for the latest EcmaScript features and sums up code style conventions of Flexare organisation. Posting any issues, questions, suggestions and pull requests are very welcomed and always appreciated.

Installing

At first, you need to install eslint package and this plugin:

npm install --save-dev eslint eslint-plugin-efficient

Then to enable our recommended ESLint configuration in a specific folder or at the root of the project create .eslintrc file and import configuration via extending:

{
  "extends": "plugin:efficient/recommended"
}

It is possible to override any rule or style in .eslintrc file if you need some specific configuration for your project.