@scenetest/eslint-plugin 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# @scenetest/eslint-plugin
|
|
2
|
+
|
|
3
|
+
ESLint plugin for [Scenetest](https://github.com/scenetest/scenetest-js). Encourages accessibility-friendly selectors.
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
npm install -D @scenetest/eslint-plugin
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
```js
|
|
10
|
+
// eslint.config.js
|
|
11
|
+
import scenetest from '@scenetest/eslint-plugin'
|
|
12
|
+
|
|
13
|
+
export default [scenetest.configs.recommended]
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
See the [monorepo](https://github.com/scenetest/scenetest-js) for full documentation.
|