source: node_modules/json-stable-stringify/.eslintrc@ d24f17c

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

Initial commit

  • Property mode set to 100644
File size: 507 bytes
Line 
1{
2 "root": true,
3
4 "extends": "@ljharb",
5
6 "rules": {
7 "consistent-return": 1,
8 "max-lines-per-function": 0,
9 "max-params": 1,
10 "max-statements-per-line": [2, { "max": 2 }],
11 "no-continue": 1,
12 "no-negated-condition": 1,
13 "no-param-reassign": 1,
14 "no-redeclare": 1,
15 "no-restricted-syntax": 1,
16 "object-curly-newline": 0,
17 "max-statements": 1,
18 "operator-linebreak": 0,
19 "sort-keys": 1,
20 },
21
22 "overrides": [
23 {
24 "files": "example/**",
25 "rules": {
26 "no-console": 0,
27 },
28 },
29 ],
30}
Note: See TracBrowser for help on using the repository browser.