source: node_modules/traverse/.eslintrc

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 608 bytes
Line 
1{
2 "root": true,
3
4 "extends": "@ljharb/eslint-config/node/0.4",
5
6 "rules": {
7 "array-bracket-newline": 0,
8 "array-callback-return": 0,
9 "array-element-newline": 0,
10 "complexity": 0,
11 "func-style": [2, "declaration"],
12 "global-require": 1,
13 "max-lines-per-function": 0,
14 "max-statements-per-line": 1,
15 "multiline-comment-style": 0,
16 "no-proto": 0,
17 "no-sparse-arrays": 1,
18 "no-underscore-dangle": 0,
19 "no-invalid-this": 0,
20 "object-curly-newline": 0,
21 "sort-keys": 0,
22 },
23
24 "overrides": [
25 {
26 "files": "examples/**",
27 "rules": {
28 "no-console": 0,
29 "no-plusplus": 0,
30 },
31 },
32 ],
33}
Note: See TracBrowser for help on using the repository browser.