UNPKG
asc2
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
0.0.1
ASCII table cheatsheet
github.com/lihroff/asc2
lihroff/asc2
asc2
/
.eslintrc.js
16 lines
(15 loc)
•
263 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//
https://cn.eslint.org/docs/user-guide/configuring
module.exports
=
{
extends:
[
'eslint:recommended'
],
env:
{
es6:
true
,
node:
true
,
jest:
true
},
globals:
{
NODE_ENV:
'readonly'
},
rules:
{
//
0
-
OK
,
1
-
WARN
,
2
-
ERROR
} }
;