eslint-plugin-xunit
v1.2.1
Published
Eslint plugin for xunit tests
Downloads
20
Readme
eslint-plugin-xunit
Eslint plugin for xunit tests
This plugin ensures good usage of the xunit framework
Install it
Globally
npm install --global eslint-plugin-xunit
In your project
npm install --save --save-exact eslint-plugin-xunit
Configure your eslintrc file
Here an example of configuration which uses the plugin
{
// Instal the xunit plugin, please do:
// > npm install -g eslint-plugin-xunit
"plugins": [
"xunit"
],
"extends": [
"plugin:xunit/recommended"
]
}