aboutsummaryrefslogtreecommitdiff
path: root/node_modules/qs/.eslintrc
diff options
context:
space:
mode:
authorgrant-kun <[email protected]>2022-09-26 11:31:02 -0500
committerGitHub <[email protected]>2022-09-26 11:31:02 -0500
commit4b237cd7f3d9ebffdfc60d987c4df3c2595c3b7c (patch)
tree1176d127cdedb18918ef8a3d728737c9937af486 /node_modules/qs/.eslintrc
parentef9d69cee87c45fc4507780a891591cc31ec5481 (diff)
Delete node_modules directory
Diffstat (limited to 'node_modules/qs/.eslintrc')
-rw-r--r--node_modules/qs/.eslintrc38
1 files changed, 0 insertions, 38 deletions
diff --git a/node_modules/qs/.eslintrc b/node_modules/qs/.eslintrc
deleted file mode 100644
index 6884760..0000000
--- a/node_modules/qs/.eslintrc
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- "root": true,
-
- "extends": "@ljharb",
-
- "ignorePatterns": [
- "dist/",
- ],
-
- "rules": {
- "complexity": 0,
- "consistent-return": 1,
- "func-name-matching": 0,
- "id-length": [2, { "min": 1, "max": 25, "properties": "never" }],
- "indent": [2, 4],
- "max-lines-per-function": [2, { "max": 150 }],
- "max-params": [2, 15],
- "max-statements": [2, 52],
- "multiline-comment-style": 0,
- "no-continue": 1,
- "no-magic-numbers": 0,
- "no-restricted-syntax": [2, "BreakStatement", "DebuggerStatement", "ForInStatement", "LabeledStatement", "WithStatement"],
- },
-
- "overrides": [
- {
- "files": "test/**",
- "rules": {
- "function-paren-newline": 0,
- "max-lines-per-function": 0,
- "max-statements": 0,
- "no-buffer-constructor": 0,
- "no-extend-native": 0,
- "no-throw-literal": 0,
- }
- }
- ]
-}