@kis-technologies/eslint-config
v1.0.1
Published
KIS Technologies ESLint Config
Keywords
Readme
KIS Technologies Javascript Style Guide
Installation
npm install @kis-technologies/eslint-config --save-devLastly, make sure you have eslint installed in your project
npm install eslint --save-devIf you are using the React settings, make sure you have babel-eslint installed, as well as eslint-plugin-react
npm install babel-eslint eslint-plugin-react --save-devUsage
Add one of the following to your project's .eslintrc file (based on your project type).
ES5
{
"extends": "@kis-technologies/eslint-config"
}ES6
{
"extends": "@kis-technologies/eslint-config/es6"
}Node 4.x +
{
"extends": "@kis-technologies/eslint-config/node-es6"
}Ember
{
"extends": "@kis-technologies/eslint-config/ember"
}React
{
"extends": "@kis-technologies/eslint-config/react"
}