eslint-config-ura
v1.0.0
Published
a custom eslint config of ura
Readme
eslint-config-ura
ESLint Shareable Config, configuring for the ura Javascript Style Guide
Installation
npm install eslint eslint-config-ura --save-devUsage
eslint-config-ura
Once the eslint-config-ura package is installed, you can use it by specifying ura in the extends section of your ESLint configuration.
{
"extends": "ura",
"rules": {
// Additional, per-project rules...
}
}Or you can specifying eslint-config-ura in the eslintConfig section of your package.json
{
"eslintConfig": {
"extends": "eslint-config-ura"
}
}