UNPKG
eslint-plugin-path-supervisor
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
0.0.1
Plugin for checking the rules of absolute and relative paths in project
eslint-plugin-path-supervisor
/
.eslintrc.js
20 lines
(18 loc)
•
289 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"use strict"
;
module
.
exports
= {
root
:
true
,
extends
: [
"eslint:recommended"
,
"plugin:eslint-plugin/recommended"
,
"plugin:node/recommended"
, ],
env
: {
node
:
true
, },
overrides
: [ {
files
: [
"tests/**/*.js"
],
env
: {
mocha
:
true
}, }, ], };