Contains eslint rules for tests and decorators
Run the following command to install eslint-plugin-rs:
$ npm i --save-dev eslint-plugin-rs
Add eslint-plugin-rs to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
{
plugins: ['rs'],
}Then configure the rules you want to use under the rules section:
{
"rules": {
'rs/separate-line-for-decorators': 'error',
'rs/separate-expect-expression(s)': 'error',
}
}expect
decorators
Useful links for creating custom rules:

