
# Sarcasticase (eslint)
Because semicolons weren’t opinionated enough.
---

## For developers who take style rules personally
Want job security without all the hard work? Easy—just turn your codebase into sarcasticase so no one else can understand it.
❌ PascalCase
❌ snake_case
❌ camelCase
❌ kebab-case
✅ sArCaStIcAsE
### How to use
Install the package:
```bash
npm i git://github.com/gaauwe/eslint-plugin-sarcasticase.git --save-dev
```
Include the plugin in your .eslintrc config:
```json
{
"plugins": ["sarcasticase"],
"rules": {
"sarcasticase/naming-convention": "error"
}
}
```
Supports fixing all existing variables by running `eslint --fix`