1.0.0 • Published 2 years ago

@newfields/eslint-config v1.0.0

Weekly downloads
-
License
ISC
Repository
github
Last release
2 years ago

Newfields ESLint Config

Default ESLint config for Newfields developers

  • @newfields/eslint-config/javascript: Basically the default ESLint recommended config with some minor changes.

  • @newfields/eslint-config/typescript: extends javascript and includes @typescript-eslint plugin

  • @newfields/eslint-config/react: extends javascript and includes the recommended react-plugin rules

To use create you .eslintrc file and extend any or all of the included configurations

module.exports = {
    'extends': [
        '@newfields/eslint-config/typescript',
        '@newfields/eslint-config/react'
    ],
};