summaryrefslogtreecommitdiffstats
path: root/node_modules/es-abstract/.eslintrc
diff options
context:
space:
mode:
authorGravatar Piotr Russ <mail@pruss.it> 2020-11-18 23:26:45 +0100
committerGravatar Piotr Russ <mail@pruss.it> 2020-11-18 23:26:45 +0100
commit81ddf9b700bc48a1f8e472209f080f9c1d9a9b09 (patch)
tree8b959d50c5a614cbf9fcb346ed556140374d4b6d /node_modules/es-abstract/.eslintrc
parent1870f3fdf43707a15fda0f609a021f516f45eb63 (diff)
downloadwebsite_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.tar.gz
website_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.tar.bz2
website_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.zip
rm node_modules
Diffstat (limited to 'node_modules/es-abstract/.eslintrc')
-rw-r--r--node_modules/es-abstract/.eslintrc66
1 files changed, 0 insertions, 66 deletions
diff --git a/node_modules/es-abstract/.eslintrc b/node_modules/es-abstract/.eslintrc
deleted file mode 100644
index 1bac5b7..0000000
--- a/node_modules/es-abstract/.eslintrc
+++ /dev/null
@@ -1,66 +0,0 @@
-{
- "root": true,
-
- "extends": "@ljharb",
-
- "env": {
- "es6": true,
- },
-
- "rules": {
- "array-bracket-newline": 0,
- "array-element-newline": 0,
- "complexity": 0,
- "eqeqeq": [2, "allow-null"],
- "func-name-matching": 0,
- "id-length": [2, { "min": 1, "max": 40 }],
- "max-params": [2, 4],
- "max-statements-per-line": [2, { "max": 2 }],
- "multiline-comment-style": 0,
- "no-magic-numbers": 0,
- "new-cap": 0,
- "no-extra-parens": 1,
- "operator-linebreak": [2, "before"],
- "sort-keys": 0,
- },
-
- "overrides": [
- {
- "files": "operations/*",
- "rules": {
- "max-lines": 0,
- },
- },
- {
- "files": "operations/*.js",
- "parserOptions": {
- "ecmaVersion": 2020,
- },
- "rules": {
- "no-console": 0,
- "no-multi-str": 0,
- },
- },
- {
- "files": "operations/getOps.js",
- "rules": {
- "no-console": 0,
- "no-process-exit": 0,
- },
- },
- {
- "files": "test/**",
- "rules": {
- "id-length": 0,
- "max-lines": 0,
- "max-lines-per-function": 0,
- "max-statements-per-line": [2, { "max": 3 }],
- "max-statements": 0,
- "no-implicit-coercion": 0,
- "no-invalid-this": 1,
- "object-curly-newline": 0,
- "prefer-regex-literals": 0,
- },
- },
- ],
-}