root / HServer / 00.Server / 00.Program / node_modules / mongodb / .eslintrc
이력 | 보기 | 이력해설 | 다운로드 (488 Bytes)
1 | 39 | HKM | { |
---|---|---|---|
2 | "extends": [ |
||
3 | "eslint:recommended" |
||
4 | ], |
||
5 | "env": { |
||
6 | "node": true, |
||
7 | "mocha": true |
||
8 | }, |
||
9 | "globals": { |
||
10 | "Promise": true, |
||
11 | "Set": true |
||
12 | }, |
||
13 | "parserOptions": { |
||
14 | "ecmaVersion": 2017 |
||
15 | }, |
||
16 | "plugins": [ |
||
17 | "prettier" |
||
18 | ], |
||
19 | "rules": { |
||
20 | "prettier/prettier": ["error", { |
||
21 | "singleQuote": true, |
||
22 | "tabWidth": 2, |
||
23 | "printWidth": 100 |
||
24 | }], |
||
25 | |||
26 | "no-console": 0, |
||
27 | "eqeqeq": ["error", "always", {"null": "ignore"}], |
||
28 | "strict": ["error", "global"] |
||
29 | } |
||
30 | } |