UNPKG
rmdirs
Version:
latest (1.0.0)
1.0.0
A tool for quickly deleting folders, based on nodejs.
github.com/aooiuu/rmdirs
aooiuu/rmdirs
rmdirs
/
.eslintrc.js
19 lines
(18 loc)
•
280 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
module.exports
=
{
env:
{
commonjs:
true
,
es6:
true
,
node:
true
},
extends:
[
'standard'
],
globals:
{
Atomics:
'readonly'
,
SharedArrayBuffer:
'readonly'
},
parserOptions:
{
ecmaVersion:
2018
},
rules:
{
semi:
[
'error'
,
'always'
], } }
;