1.2.0 • Published 3 years ago
@tmware/eslint-config v1.2.0
@tmware/eslint-config 
ESLint config for my JavaScript projects.
TypeScript configuration has moved to @tmware/eslint-config-typescript.
Installation
yarn add @tmware/eslint-config eslint --devnpm i @tmware/eslint-config eslint --save-devUsage
To use the ESLint config, add the following to your .eslintrc:
{
"extends": "@tmware/eslint-config"
}Lint script for package.json
...
"lint": "eslint --ext .js --ignore-path .gitignore src/"
...