source: frontend/node_modules/object.groupby/.eslintrc

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 2 weeks ago

Fix frontend appearance

  • Property mode set to 100644
File size: 489 bytes
Line 
1{
2 "root": true,
3
4 "extends": "@ljharb",
5
6 "rules": {
7 "array-bracket-newline": "off",
8 "id-length": "off",
9 "max-lines-per-function": "off",
10 "new-cap": ["error", {
11 "capIsNewExceptions": [
12 "CreateDataPropertyOrThrow",
13 "GroupBy",
14 "OrdinaryObjectCreate",
15 ],
16 }],
17 },
18
19 "overrides": [
20 {
21 "files": "aos/*.js",
22 "rules": {
23 "max-statements": "off",
24 },
25 },
26 {
27 "files": "test/tests.js",
28 "rules": {
29 "max-lines-per-function": "off",
30 },
31 },
32 ],
33}
Note: See TracBrowser for help on using the repository browser.