1.1.3 • Published 2 months ago

eslint-plugin-hardcore v1.1.3

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

ESLint Hardcore config

Installing

  1. In your project folder, run:
yarn install --dev eslint-plugin-hardcore
  1. You will see several dependencies were installed. Now, create (or update) a .eslintrc file with the following content:
{
  'plugins': ["hardcore"],
  'extends': [
    'plugin:hardcore/recommended', // For any node project
    'plugin:hardcore/react', // if using react
    'plugin:hardcore/react-native', // if using react-native
  ]
}