source: node_modules/minimist/.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: 511 bytes
Line 
1{
2 "root": true,
3
4 "extends": "@ljharb/eslint-config/node/0.4",
5
6 "rules": {
7 "array-element-newline": 0,
8 "complexity": 0,
9 "func-style": [2, "declaration"],
10 "max-lines-per-function": 0,
11 "max-nested-callbacks": 1,
12 "max-statements-per-line": 1,
13 "max-statements": 0,
14 "multiline-comment-style": 0,
15 "no-continue": 1,
16 "no-param-reassign": 1,
17 "no-restricted-syntax": 1,
18 "object-curly-newline": 0,
19 },
20
21 "overrides": [
22 {
23 "files": "test/**",
24 "rules": {
25 "camelcase": 0,
26 },
27 },
28 ]
29}
Note: See TracBrowser for help on using the repository browser.