Skip to content

Commit ae4ebbb

Browse files
committed
Add chunk utility to split big values into evenly sized chunks.
1 parent 0e904b0 commit ae4ebbb

File tree

8 files changed

+545
-416
lines changed

8 files changed

+545
-416
lines changed

.eslintrc.json

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,6 @@
99
"typescript": {}
1010
}
1111
},
12-
"env": {
13-
"browser": true,
14-
"node": true
15-
},
16-
"plugins": [
17-
"@typescript-eslint",
18-
"ava"
19-
],
2012
"extends": [
2113
"plugin:ava/recommended",
2214
"@octetstream/eslint-config/esm/typescript"
@@ -25,6 +17,9 @@
2517
// These two rules are false-positive and have no solution for TS
2618
"no-redeclare": 0,
2719
"no-dupe-class-members": 0,
28-
"lines-between-class-members": 0
20+
"lines-between-class-members": 0,
21+
22+
// FIXME: This is a workaround to prevent false-positive errors for this rule. It shouln't be exposed from my eslint config. I need to find why it happens.
23+
"react/jsx-filename-extension": 0
2924
}
3025
}

package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,16 @@
4040
"author": "Nick K.",
4141
"license": "MIT",
4242
"devDependencies": {
43-
"@octetstream/eslint-config": "6.2.2",
43+
"@octetstream/eslint-config": "7.2.1",
4444
"@types/mime-types": "2.1.1",
45-
"@types/node": "18.15.11",
46-
"@types/sinon": "^10.0.13",
47-
"@typescript-eslint/eslint-plugin": "5.57.1",
48-
"@typescript-eslint/parser": "5.57.1",
45+
"@types/node": "20.2.1",
46+
"@types/sinon": "^10.0.15",
47+
"@typescript-eslint/eslint-plugin": "5.59.6",
48+
"@typescript-eslint/parser": "5.59.6",
4949
"ava": "5.2.0",
5050
"c8": "7.13.0",
5151
"del-cli": "5.0.0",
52-
"eslint": "8.37.0",
52+
"eslint": "8.40.0",
5353
"eslint-config-airbnb-typescript": "17.0.0",
5454
"eslint-import-resolver-typescript": "3.5.5",
5555
"eslint-plugin-ava": "14.0.0",
@@ -58,12 +58,12 @@
5858
"eslint-plugin-react": "7.32.2",
5959
"formdata-node": "5.0.0",
6060
"husky": "8.0.3",
61-
"lint-staged": "13.2.0",
61+
"lint-staged": "13.2.2",
6262
"pinst": "3.0.0",
63-
"sinon": "^15.0.3",
63+
"sinon": "^15.0.4",
6464
"ts-node": "10.9.1",
6565
"ttypescript": "1.5.15",
66-
"typescript": "5.0.3",
66+
"typescript": "5.0.4",
6767
"web-streams-polyfill": "4.0.0-beta.3"
6868
}
6969
}

0 commit comments

Comments
 (0)