The first ESLint plugin for Jewish people.
An ESLint plugin that checks for files that don't have בס״ד (or any other string of your choice) at the top.
This is useful for enforcing religious compliance and/or spiritual devotion among your dev team. I won't be offended if you choose to use it for more mundane or silly matters such as organizational documentation standards.
Install ESLint either locally or globally.
$ npm install eslint --save-dev
If ESLint
is installed globally, the plugin needs to be installed globally as well.
$ npm install eslint-plugin-basad --save-dev
Add the plugins
property to your .eslintrc
file and specify eslint-plugin-basad as a plugin.
{
"plugins": [
"basad"
]
}
Then, turn on the plugin by adding it to the rules section.
{
"plugins": [
"basad"
],
"rules": {
"basad/basad": 2
}
}
The default configuration will check that the first line of each file is a comment containing the strings basad
or בס״ד
and generate an error if it doesn't.
You can configure eslint-plugin-basad
with several options.
-
Severity (0 - allow, 1 - warning, 2 - error)
-
Custom Matcher (
string|[string]
) - if provided, replaces default strings expected. Leavenull
to use the default['basad', 'בס״ד']
-
Options:
- allowAnywhere: Allows matching for all of the comments in the file, not only in the first line (default:
false
) - ignoreCase: Makes the rule case-insensitive. (default:
false
)
- allowAnywhere: Allows matching for all of the comments in the file, not only in the first line (default:
Note: only Severity is required.
###Examples
"basad/basad": 2
"basad/basad": [2, "customMatch"]
"basad/basad": [
2,
["customMatch1", "customMatch2"]
]
"basad/basad": [
2,
["customMatch1", "customMatch2"],
{
"ignoreCase": true,
"allowAnywhere": true
}
]
"basad/basad": [
2,
null,
{
"ignoreCase": true,
"allowAnywhere": true
}
]
Feel free to create PRs with additional features, bug fixes, general improvements, and anything else really. Please take note that this plugin is dead simple by design - zero dependencies and minimal code. Any complication added will need to be justified properly.
eslint-plugin-basad is licensed under the MIT License.