Skip to content

Commit 79164f9

Browse files
Refactor parser and add additional TC segments
1 parent d7f6d5b commit 79164f9

File tree

3 files changed

+355
-97
lines changed

3 files changed

+355
-97
lines changed

.eslintrc.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,22 @@ module.exports = {
1616
"array-element-newline": "off",
1717
"func-names": "off",
1818
"function-call-argument-newline": "off",
19+
"max-depth": "off",
1920
"max-len": "off",
2021
"max-lines-per-function": "off",
22+
"max-lines": "off",
23+
"max-params": "off",
24+
"max-statements": "off",
2125
"multiline-ternary": "off",
2226
"no-invalid-this": "off",
27+
"no-loop-func": "off",
2328
"no-magic-numbers": "off",
2429
"no-ternary": "off",
2530
"no-var": "off",
2631
"one-var": "off",
2732
"padded-blocks": "off",
2833
"prefer-arrow-callback": "off",
34+
"prefer-destructuring": "off",
2935
"quote-props": "off",
3036
"require-unicode-regexp": "off",
3137
"sort-keys": "off",

0 commit comments

Comments
 (0)