Revize 56f6c6df
Přidáno uživatelem Jan Čarnogurský před více než 4 roky(ů)
templetes/.babelrc | ||
---|---|---|
1 |
{ |
|
2 |
"presets":[ |
|
3 |
"es2015", "react" |
|
4 |
] |
|
5 |
} |
templetes/node_modules/async-limiter/.eslintignore | ||
---|---|---|
1 |
coverage |
|
2 |
.nyc_output |
templetes/node_modules/cipher-base/.eslintrc | ||
---|---|---|
1 |
{ |
|
2 |
"extends": ["standard"] |
|
3 |
} |
templetes/node_modules/debug/.coveralls.yml | ||
---|---|---|
1 |
repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve |
templetes/node_modules/debug/.eslintrc | ||
---|---|---|
1 |
{ |
|
2 |
"env": { |
|
3 |
"browser": true, |
|
4 |
"node": true |
|
5 |
}, |
|
6 |
"rules": { |
|
7 |
"no-console": 0, |
|
8 |
"no-empty": [1, { "allowEmptyCatch": true }] |
|
9 |
}, |
|
10 |
"extends": "eslint:recommended" |
|
11 |
} |
templetes/node_modules/deep-equal/.eslintrc | ||
---|---|---|
1 |
{ |
|
2 |
"root": true, |
|
3 |
"extends": "@ljharb", |
|
4 |
"rules": { |
|
5 |
"complexity": 0, |
|
6 |
"eqeqeq": 1, |
|
7 |
"func-style": [2, "declaration"], |
|
8 |
"indent": [2, 2], |
|
9 |
"max-params": [2, 3], |
|
10 |
"max-statements-per-line": [2, { "max": 2 }], |
|
11 |
"strict": 1, |
|
12 |
}, |
|
13 |
"overrides": [ |
|
14 |
{ |
|
15 |
"files": ["example/**", "test/**"], |
|
16 |
"rules": { |
|
17 |
"max-params": 0, |
|
18 |
"no-console": 0, |
|
19 |
}, |
|
20 |
}, |
|
21 |
], |
|
22 |
} |
templetes/node_modules/define-properties/.editorconfig | ||
---|---|---|
1 |
root = true |
|
2 |
|
|
3 |
[*] |
|
4 |
indent_style = tab; |
|
5 |
insert_final_newline = true; |
|
6 |
quote_type = auto; |
|
7 |
space_after_anonymous_functions = true; |
|
8 |
space_after_control_statements = true; |
|
9 |
spaces_around_operators = true; |
|
10 |
trim_trailing_whitespace = true; |
|
11 |
spaces_in_brackets = false; |
|
12 |
end_of_line = lf; |
|
13 |
|
templetes/node_modules/define-properties/.eslintrc | ||
---|---|---|
1 |
{ |
|
2 |
"root": true, |
|
3 |
|
|
4 |
"extends": "@ljharb", |
|
5 |
|
|
6 |
"rules": { |
|
7 |
"id-length": [2, { "min": 1, "max": 35 }], |
|
8 |
"max-lines-per-function": [2, 100], |
|
9 |
"max-params": [2, 4], |
|
10 |
"max-statements": [2, 13] |
|
11 |
} |
|
12 |
} |
templetes/node_modules/es-abstract/.editorconfig | ||
---|---|---|
1 |
root = true |
|
2 |
|
|
3 |
[*] |
|
4 |
indent_style = tab; |
|
5 |
insert_final_newline = true; |
|
6 |
quote_type = auto; |
|
7 |
space_after_anonymous_functions = true; |
|
8 |
space_after_control_statements = true; |
|
9 |
spaces_around_operators = true; |
|
10 |
trim_trailing_whitespace = true; |
|
11 |
spaces_in_brackets = false; |
|
12 |
end_of_line = lf; |
|
13 |
|
templetes/node_modules/es-abstract/.eslintignore | ||
---|---|---|
1 |
coverage |
templetes/node_modules/es-abstract/.eslintrc | ||
---|---|---|
1 |
{ |
|
2 |
"root": true, |
|
3 |
|
|
4 |
"extends": "@ljharb", |
|
5 |
|
|
6 |
"env": { |
|
7 |
"es6": true, |
|
8 |
}, |
|
9 |
|
|
10 |
"rules": { |
|
11 |
"array-bracket-newline": 0, |
|
12 |
"array-element-newline": 0, |
|
13 |
"complexity": 0, |
|
14 |
"eqeqeq": [2, "allow-null"], |
|
15 |
"func-name-matching": 0, |
|
16 |
"id-length": [2, { "min": 1, "max": 40 }], |
|
17 |
"max-params": [2, 4], |
|
18 |
"max-statements-per-line": [2, { "max": 2 }], |
|
19 |
"multiline-comment-style": 0, |
|
20 |
"no-magic-numbers": 0, |
|
21 |
"new-cap": 0, |
|
22 |
"no-extra-parens": 1, |
|
23 |
"operator-linebreak": [2, "before"], |
|
24 |
"sort-keys": 0, |
|
25 |
}, |
|
26 |
|
|
27 |
"overrides": [ |
|
28 |
{ |
|
29 |
"files": "operations/*", |
|
30 |
"rules": { |
|
31 |
"max-lines": 0, |
|
32 |
}, |
|
33 |
}, |
|
34 |
{ |
|
35 |
"files": "operations/*.js", |
|
36 |
"parserOptions": { |
|
37 |
"ecmaVersion": 2020, |
|
38 |
}, |
|
39 |
"rules": { |
|
40 |
"no-console": 0, |
|
41 |
"no-multi-str": 0, |
|
42 |
}, |
|
43 |
}, |
|
44 |
{ |
|
45 |
"files": "operations/getOps.js", |
|
46 |
"rules": { |
|
47 |
"no-console": 0, |
|
48 |
"no-process-exit": 0, |
|
49 |
}, |
|
50 |
}, |
|
51 |
{ |
|
52 |
"files": "test/**", |
|
53 |
"rules": { |
|
54 |
"id-length": 0, |
|
55 |
"max-lines": 0, |
|
56 |
"max-lines-per-function": 0, |
|
57 |
"max-statements-per-line": [2, { "max": 3 }], |
|
58 |
"max-statements": 0, |
|
59 |
"no-implicit-coercion": 0, |
|
60 |
"no-invalid-this": 1, |
|
61 |
"object-curly-newline": 0, |
|
62 |
"prefer-regex-literals": 0, |
|
63 |
}, |
|
64 |
}, |
|
65 |
], |
|
66 |
} |
templetes/node_modules/es-abstract/operations/.eslintrc | ||
---|---|---|
1 |
{ |
|
2 |
"rules": { |
|
3 |
"id-length": 0, |
|
4 |
}, |
|
5 |
} |
templetes/node_modules/es-to-primitive/.eslintrc | ||
---|---|---|
1 |
{ |
|
2 |
"root": true, |
|
3 |
|
|
4 |
"extends": "@ljharb", |
|
5 |
|
|
6 |
"rules": { |
|
7 |
"complexity": [2, 14], |
|
8 |
"func-name-matching": 0, |
|
9 |
"id-length": [2, { "min": 1, "max": 24, "properties": "never" }], |
|
10 |
"max-statements": [2, 20], |
|
11 |
"new-cap": [2, { "capIsNewExceptions": ["GetMethod"] }] |
|
12 |
}, |
|
13 |
|
|
14 |
"overrides": [ |
|
15 |
{ |
|
16 |
"files": "test/**", |
|
17 |
"rules": { |
|
18 |
"max-lines-per-function": [2, { "max": 68 }], |
|
19 |
}, |
|
20 |
} |
|
21 |
], |
|
22 |
} |
templetes/node_modules/esrecurse/.babelrc | ||
---|---|---|
1 |
{ |
|
2 |
"presets": ["es2015"] |
|
3 |
} |
templetes/node_modules/events/.airtap.yml | ||
---|---|---|
1 |
sauce_connect: true |
|
2 |
loopback: airtap.local |
|
3 |
browsers: |
|
4 |
- name: chrome |
|
5 |
version: latest |
|
6 |
- name: firefox |
|
7 |
version: latest |
|
8 |
- name: safari |
|
9 |
version: 9..latest |
|
10 |
- name: iphone |
|
11 |
version: latest |
|
12 |
- name: ie |
|
13 |
version: 9..latest |
|
14 |
- name: microsoftedge |
|
15 |
version: 13..latest |
templetes/node_modules/eventsource/.editorconfig | ||
---|---|---|
1 |
# http://editorconfig.org |
|
2 |
root = true |
|
3 |
|
|
4 |
[*] |
|
5 |
# Use hard or soft tabs |
|
6 |
indent_style = space |
|
7 |
|
|
8 |
# Size of a single indent |
|
9 |
indent_size = tab |
|
10 |
|
|
11 |
# Number of columns representing a tab character |
|
12 |
tab_width = 2 |
|
13 |
|
|
14 |
# Use line-feed as EOL indicator |
|
15 |
end_of_line = lf |
|
16 |
|
|
17 |
# Use UTF-8 character encoding for all files |
|
18 |
charset = utf-8 |
|
19 |
|
|
20 |
# Remove any whitespace characters preceding newline characters |
|
21 |
trim_trailing_whitespace = true |
|
22 |
|
|
23 |
# Ensure file ends with a newline when saving |
|
24 |
insert_final_newline = true |
|
25 |
|
|
26 |
[*.md] |
|
27 |
trim_trailing_whitespace = false |
templetes/node_modules/function-bind/.editorconfig | ||
---|---|---|
1 |
root = true |
|
2 |
|
|
3 |
[*] |
|
4 |
indent_style = tab |
|
5 |
indent_size = 4 |
|
6 |
end_of_line = lf |
|
7 |
charset = utf-8 |
|
8 |
trim_trailing_whitespace = true |
|
9 |
insert_final_newline = true |
|
10 |
max_line_length = 120 |
|
11 |
|
|
12 |
[CHANGELOG.md] |
|
13 |
indent_style = space |
|
14 |
indent_size = 2 |
|
15 |
|
|
16 |
[*.json] |
|
17 |
max_line_length = off |
|
18 |
|
|
19 |
[Makefile] |
|
20 |
max_line_length = off |
templetes/node_modules/function-bind/.eslintrc | ||
---|---|---|
1 |
{ |
|
2 |
"root": true, |
|
3 |
|
|
4 |
"extends": "@ljharb", |
|
5 |
|
|
6 |
"rules": { |
|
7 |
"func-name-matching": 0, |
|
8 |
"indent": [2, 4], |
|
9 |
"max-nested-callbacks": [2, 3], |
|
10 |
"max-params": [2, 3], |
|
11 |
"max-statements": [2, 20], |
|
12 |
"no-new-func": [1], |
|
13 |
"strict": [0] |
|
14 |
} |
|
15 |
} |
templetes/node_modules/function-bind/test/.eslintrc | ||
---|---|---|
1 |
{ |
|
2 |
"rules": { |
|
3 |
"array-bracket-newline": 0, |
|
4 |
"array-element-newline": 0, |
|
5 |
"max-statements-per-line": [2, { "max": 2 }], |
|
6 |
"no-invalid-this": 0, |
|
7 |
"no-magic-numbers": 0, |
|
8 |
} |
|
9 |
} |
templetes/node_modules/has-symbols/.eslintrc | ||
---|---|---|
1 |
{ |
|
2 |
"root": true, |
|
3 |
|
|
4 |
"extends": "@ljharb", |
|
5 |
|
|
6 |
"rules": { |
|
7 |
"max-statements-per-line": [2, { "max": 2 }], |
|
8 |
"no-magic-numbers": 0, |
|
9 |
"multiline-comment-style": 0, |
|
10 |
} |
|
11 |
} |
templetes/node_modules/http-proxy/.auto-changelog | ||
---|---|---|
1 |
{ |
|
2 |
"output": "CHANGELOG.md", |
|
3 |
"template": "keepachangelog", |
|
4 |
"unreleased": true, |
|
5 |
"commitLimit": false |
|
6 |
} |
templetes/node_modules/is-arguments/.editorconfig | ||
---|---|---|
1 |
root = true |
|
2 |
|
|
3 |
[*] |
|
4 |
indent_style = tab |
|
5 |
indent_size = 4 |
|
6 |
end_of_line = lf |
|
7 |
charset = utf-8 |
|
8 |
trim_trailing_whitespace = true |
|
9 |
insert_final_newline = true |
|
10 |
max_line_length = 150 |
|
11 |
|
|
12 |
[CHANGELOG.md] |
|
13 |
indent_style = space |
|
14 |
indent_size = 2 |
|
15 |
|
|
16 |
[*.json] |
|
17 |
max_line_length = off |
|
18 |
|
|
19 |
[Makefile] |
|
20 |
max_line_length = off |
templetes/node_modules/is-arguments/.eslintrc | ||
---|---|---|
1 |
{ |
|
2 |
"root": true, |
|
3 |
|
|
4 |
"extends": "@ljharb", |
|
5 |
|
|
6 |
"rules": { |
|
7 |
"id-length": [2, { "min": 1, "max": 25 }], |
|
8 |
"operator-linebreak": [2, "after"] |
|
9 |
} |
|
10 |
} |
templetes/node_modules/is-callable/.editorconfig | ||
---|---|---|
1 |
root = true |
|
2 |
|
|
3 |
[*] |
|
4 |
indent_style = tab |
|
5 |
indent_size = 4 |
|
6 |
end_of_line = lf |
|
7 |
charset = utf-8 |
|
8 |
trim_trailing_whitespace = true |
|
9 |
insert_final_newline = true |
|
10 |
max_line_length = 150 |
|
11 |
|
|
12 |
[CHANGELOG.md] |
|
13 |
indent_style = space |
|
14 |
indent_size = 2 |
|
15 |
|
|
16 |
[*.json] |
|
17 |
max_line_length = off |
|
18 |
|
|
19 |
[Makefile] |
|
20 |
max_line_length = off |
templetes/node_modules/is-callable/.eslintrc | ||
---|---|---|
1 |
{ |
|
2 |
"root": true, |
|
3 |
|
|
4 |
"extends": "@ljharb", |
|
5 |
|
|
6 |
"rules": { |
|
7 |
"id-length": 0, |
|
8 |
"max-statements": [2, 12], |
|
9 |
"max-statements-per-line": [2, { "max": 2 }] |
|
10 |
} |
|
11 |
} |
templetes/node_modules/is-date-object/.eslintrc | ||
---|---|---|
1 |
{ |
|
2 |
"root": true, |
|
3 |
|
|
4 |
"extends": "@ljharb", |
|
5 |
|
|
6 |
"rules": { |
|
7 |
"max-statements": [2, 12] |
|
8 |
} |
|
9 |
} |
templetes/node_modules/is-regex/.eslintrc | ||
---|---|---|
1 |
{ |
|
2 |
"root": true, |
|
3 |
|
|
4 |
"extends": "@ljharb", |
|
5 |
|
|
6 |
"rules": { |
|
7 |
"id-length": [1] |
|
8 |
} |
|
9 |
} |
templetes/node_modules/is-symbol/.editorconfig | ||
---|---|---|
1 |
root = true |
|
2 |
|
|
3 |
[*] |
|
4 |
indent_style = tab; |
|
5 |
insert_final_newline = true; |
|
6 |
quote_type = auto; |
|
7 |
space_after_anonymous_functions = true; |
|
8 |
space_after_control_statements = true; |
|
9 |
spaces_around_operators = true; |
|
10 |
trim_trailing_whitespace = true; |
|
11 |
spaces_in_brackets = false; |
|
12 |
end_of_line = lf; |
|
13 |
|
templetes/node_modules/is-symbol/.eslintrc | ||
---|---|---|
1 |
{ |
|
2 |
"root": true, |
|
3 |
|
|
4 |
"extends": "@ljharb", |
|
5 |
|
|
6 |
"overrides": [ |
|
7 |
{ |
|
8 |
"files": "test/**", |
|
9 |
"rules": { |
|
10 |
"no-restricted-properties": 0, |
|
11 |
}, |
|
12 |
}, |
|
13 |
], |
|
14 |
} |
templetes/node_modules/loglevel/.editorconfig | ||
---|---|---|
1 |
|
|
2 |
# EditorConfig defines and maintains consistent coding styles between different |
|
3 |
# editors and IDEs: http://EditorConfig.org/ |
|
4 |
# Top-most EditorConfig file |
|
5 |
root = true |
|
6 |
|
|
7 |
# All files |
|
8 |
[*.*] |
|
9 |
charset = utf-8 |
|
10 |
end_of_line = lf |
|
11 |
insert_final_newline = true |
|
12 |
indent_style = space |
|
13 |
indent_size = 4 |
|
14 |
trim_trailing_whitespace = true |
|
15 |
max_line_length = 80 |
|
16 |
|
|
17 |
[*.md] |
|
18 |
indent_size = 2 |
|
19 |
|
|
20 |
[*.json] |
|
21 |
indent_size = 2 |
templetes/node_modules/object-inspect/.eslintignore | ||
---|---|---|
1 |
coverage/ |
templetes/node_modules/object-inspect/.eslintrc | ||
---|---|---|
1 |
{ |
|
2 |
"root": true, |
|
3 |
"extends": "@ljharb", |
|
4 |
"rules": { |
|
5 |
"complexity": 0, |
|
6 |
"func-style": [2, 'declaration'], |
|
7 |
"indent": [2, 4], |
|
8 |
"max-lines-per-function": [2, 130], |
|
9 |
"max-params": [2, 4], |
|
10 |
"max-statements": [2, 90], |
|
11 |
"max-statements-per-line": [2, { "max": 2 }], |
|
12 |
"no-magic-numbers": 0, |
|
13 |
"no-param-reassign": 1, |
|
14 |
"strict": 0, // TODO |
|
15 |
}, |
|
16 |
"globals": { |
|
17 |
"BigInt": false, |
|
18 |
"WeakSet": false, |
|
19 |
"WeakMap": false, |
|
20 |
}, |
|
21 |
"overrides": [ |
|
22 |
{ |
|
23 |
"files": ["test/**", "test-*", "example/**"], |
|
24 |
"rules": { |
|
25 |
"array-bracket-newline": 0, |
|
26 |
"max-params": 0, |
|
27 |
"max-statements": 0, |
|
28 |
"max-statements-per-line": 0, |
|
29 |
"object-curly-newline": 0, |
|
30 |
"sort-keys": 0, |
|
31 |
}, |
|
32 |
}, |
|
33 |
{ |
|
34 |
"files": ["example/**"], |
|
35 |
"rules": { |
|
36 |
"no-console": 0, |
|
37 |
}, |
|
38 |
}, |
|
39 |
{ |
|
40 |
"files": ["test/browser/**"], |
|
41 |
"env": { |
|
42 |
"browser": true, |
|
43 |
}, |
|
44 |
}, |
|
45 |
{ |
|
46 |
"files": ["test/bigint*"], |
|
47 |
"rules": { |
|
48 |
"new-cap": [2, { "capIsNewExceptions": ["BigInt"] }], |
|
49 |
}, |
|
50 |
}, |
|
51 |
{ |
|
52 |
"files": "index.js", |
|
53 |
"globals": { |
|
54 |
"HTMLElement": false, |
|
55 |
}, |
|
56 |
"rules": { |
|
57 |
"no-use-before-define": 1, |
|
58 |
}, |
|
59 |
}, |
|
60 |
], |
|
61 |
} |
templetes/node_modules/object-is/.eslintrc | ||
---|---|---|
1 |
{ |
|
2 |
"root": true, |
|
3 |
|
|
4 |
"extends": "@ljharb" |
|
5 |
} |
templetes/node_modules/object-keys/.editorconfig | ||
---|---|---|
1 |
root = true |
|
2 |
|
|
3 |
[*] |
|
4 |
indent_style = tab; |
|
5 |
insert_final_newline = true; |
|
6 |
quote_type = auto; |
|
7 |
space_after_anonymous_functions = true; |
|
8 |
space_after_control_statements = true; |
|
9 |
spaces_around_operators = true; |
|
10 |
trim_trailing_whitespace = true; |
|
11 |
spaces_in_brackets = false; |
|
12 |
end_of_line = lf; |
|
13 |
|
templetes/node_modules/object-keys/.eslintrc | ||
---|---|---|
1 |
{ |
|
2 |
"root": true, |
|
3 |
|
|
4 |
"extends": "@ljharb", |
|
5 |
|
|
6 |
"rules": { |
|
7 |
"complexity": [2, 23], |
|
8 |
"id-length": [2, { "min": 1, "max": 40 }], |
|
9 |
"max-params": [2, 3], |
|
10 |
"max-statements": [2, 23], |
|
11 |
"max-statements-per-line": [2, { "max": 2 }], |
|
12 |
"no-extra-parens": [1], |
|
13 |
"no-invalid-this": [1], |
|
14 |
"no-restricted-syntax": [2, "BreakStatement", "ContinueStatement", "LabeledStatement", "WithStatement"], |
|
15 |
"operator-linebreak": [2, "after"] |
|
16 |
} |
|
17 |
} |
templetes/node_modules/object.assign/.editorconfig | ||
---|---|---|
1 |
root = true |
|
2 |
|
|
3 |
[*] |
|
4 |
indent_style = tab |
|
5 |
indent_size = 4 |
|
6 |
end_of_line = lf |
|
7 |
charset = utf-8 |
|
8 |
trim_trailing_whitespace = true |
|
9 |
insert_final_newline = true |
|
10 |
max_line_length = 120 |
|
11 |
|
|
12 |
[CHANGELOG.md] |
|
13 |
indent_style = space |
|
14 |
indent_size = 2 |
|
15 |
|
|
16 |
[*.json] |
|
17 |
max_line_length = off |
|
18 |
|
|
19 |
[Makefile] |
|
20 |
max_line_length = off |
templetes/node_modules/object.assign/.eslintrc | ||
---|---|---|
1 |
{ |
|
2 |
"root": true, |
|
3 |
|
|
4 |
"extends": "@ljharb", |
|
5 |
|
|
6 |
"rules": { |
|
7 |
"complexity": [2, 17], |
|
8 |
"id-length": [2, { "min": 1, "max": 30 }], |
|
9 |
"max-nested-callbacks": [2, 3], |
|
10 |
"max-statements": [2, 33], |
|
11 |
"max-statements-per-line": [2, { "max": 2 }], |
|
12 |
"no-invalid-this": [1], |
|
13 |
"no-magic-numbers": [1, { "ignore": [0] }], |
|
14 |
"no-restricted-syntax": [2, "BreakStatement", "ContinueStatement", "DebuggerStatement", "LabeledStatement", "WithStatement"], |
|
15 |
"no-unused-vars": [1, { "vars": "all", "args": "after-used" }] |
|
16 |
} |
|
17 |
} |
templetes/node_modules/object.assign/test/.eslintrc | ||
---|---|---|
1 |
{ |
|
2 |
"rules": { |
|
3 |
"max-statements-per-line": [2, { "max": 3 }], |
|
4 |
"no-magic-numbers": 0, |
|
5 |
"object-curly-newline": 0, |
|
6 |
} |
|
7 |
} |
templetes/node_modules/process/.eslintrc | ||
---|---|---|
1 |
{ |
|
2 |
extends: "eslint:recommended", |
|
3 |
"env": { |
|
4 |
"node": true, |
|
5 |
"browser": true, |
|
6 |
"es6" : true, |
|
7 |
"mocha": true |
|
8 |
}, |
|
9 |
"rules": { |
|
10 |
"indent": [2, 4], |
|
11 |
"brace-style": [2, "1tbs"], |
|
12 |
"quotes": [2, "single"], |
|
13 |
"no-console": 0, |
|
14 |
"no-shadow": 0, |
|
15 |
"no-use-before-define": [2, "nofunc"], |
|
16 |
"no-underscore-dangle": 0, |
|
17 |
"no-constant-condition": 0, |
|
18 |
"space-after-function-name": 0, |
|
19 |
"consistent-return": 0 |
|
20 |
} |
|
21 |
} |
templetes/node_modules/qs/.editorconfig | ||
---|---|---|
1 |
root = true |
|
2 |
|
|
3 |
[*] |
|
4 |
indent_style = space |
|
5 |
indent_size = 4 |
|
6 |
end_of_line = lf |
|
7 |
charset = utf-8 |
|
8 |
trim_trailing_whitespace = true |
|
9 |
insert_final_newline = true |
|
10 |
max_line_length = 160 |
|
11 |
|
|
12 |
[test/*] |
|
13 |
max_line_length = off |
|
14 |
|
|
15 |
[*.md] |
|
16 |
max_line_length = off |
|
17 |
|
|
18 |
[*.json] |
|
19 |
max_line_length = off |
|
20 |
|
|
21 |
[Makefile] |
|
22 |
max_line_length = off |
|
23 |
|
|
24 |
[CHANGELOG.md] |
|
25 |
indent_style = space |
|
26 |
indent_size = 2 |
|
27 |
|
|
28 |
[LICENSE] |
|
29 |
indent_size = 2 |
|
30 |
max_line_length = off |
templetes/node_modules/qs/.eslintignore | ||
---|---|---|
1 |
dist |
templetes/node_modules/qs/.eslintrc | ||
---|---|---|
1 |
{ |
|
2 |
"root": true, |
|
3 |
|
|
4 |
"extends": "@ljharb", |
|
5 |
|
|
6 |
"rules": { |
|
7 |
"complexity": 0, |
|
8 |
"consistent-return": 1, |
|
9 |
"func-name-matching": 0, |
|
10 |
"id-length": [2, { "min": 1, "max": 25, "properties": "never" }], |
|
11 |
"indent": [2, 4], |
|
12 |
"max-lines-per-function": [2, { "max": 150 }], |
|
13 |
"max-params": [2, 14], |
|
14 |
"max-statements": [2, 52], |
|
15 |
"multiline-comment-style": 0, |
|
16 |
"no-continue": 1, |
|
17 |
"no-magic-numbers": 0, |
|
18 |
"no-restricted-syntax": [2, "BreakStatement", "DebuggerStatement", "ForInStatement", "LabeledStatement", "WithStatement"], |
|
19 |
"operator-linebreak": [2, "before"], |
|
20 |
} |
|
21 |
} |
templetes/node_modules/qs/test/.eslintrc | ||
---|---|---|
1 |
{ |
|
2 |
"rules": { |
|
3 |
"array-bracket-newline": 0, |
|
4 |
"array-element-newline": 0, |
|
5 |
"consistent-return": 2, |
|
6 |
"function-paren-newline": 0, |
|
7 |
"max-lines": 0, |
|
8 |
"max-lines-per-function": 0, |
|
9 |
"max-nested-callbacks": [2, 3], |
|
10 |
"max-statements": 0, |
|
11 |
"no-buffer-constructor": 0, |
|
12 |
"no-extend-native": 0, |
|
13 |
"no-magic-numbers": 0, |
|
14 |
"object-curly-newline": 0, |
|
15 |
"sort-keys": 0 |
|
16 |
} |
|
17 |
} |
templetes/node_modules/regexp.prototype.flags/.editorconfig | ||
---|---|---|
1 |
root = true |
|
2 |
|
|
3 |
[*] |
|
4 |
indent_style = tab; |
|
5 |
insert_final_newline = true; |
|
6 |
quote_type = auto; |
|
7 |
space_after_anonymous_functions = true; |
|
8 |
space_after_control_statements = true; |
|
9 |
spaces_around_operators = true; |
|
10 |
trim_trailing_whitespace = true; |
|
11 |
spaces_in_brackets = false; |
|
12 |
end_of_line = lf; |
|
13 |
|
templetes/node_modules/regexp.prototype.flags/.eslintrc | ||
---|---|---|
1 |
{ |
|
2 |
"root": true, |
|
3 |
|
|
4 |
"extends": "@ljharb", |
|
5 |
|
|
6 |
"rules": { |
|
7 |
"eqeqeq": [2, "allow-null"], |
|
8 |
"max-statements": 0, |
|
9 |
"no-extend-native": [2, { "exceptions": ["RegExp"] }], |
|
10 |
"no-invalid-regexp": [2, { "allowConstructorFlags": ["s", "u", "y"] }], |
|
11 |
"no-invalid-this": 0 |
|
12 |
}, |
|
13 |
|
|
14 |
"overrides": [ |
|
15 |
{ |
|
16 |
"files": "test/**", |
|
17 |
"rules": { |
|
18 |
"max-lines-per-function": 0, |
|
19 |
}, |
|
20 |
}, |
|
21 |
], |
|
22 |
} |
templetes/node_modules/stream-http/.airtap.yml | ||
---|---|---|
1 |
sauce_connect: true |
|
2 |
browsers: |
|
3 |
- name: chrome |
|
4 |
version: 39..latest |
|
5 |
- name: firefox |
|
6 |
version: 34..latest |
|
7 |
- name: safari |
|
8 |
version: 8..latest |
|
9 |
- name: MicrosoftEdge |
|
10 |
version: 13..latest |
|
11 |
- name: ie |
|
12 |
version: 9..latest |
|
13 |
- name: iphone |
|
14 |
version: '9.3..latest' |
|
15 |
- name: android |
|
16 |
version: '4.4..6.0' # TODO: change this back to latest once https://github.com/airtap/browsers/issues/3 is fixed |
|
17 |
server: ./test/server/index.js |
|
18 |
scripts: |
|
19 |
- "/ie8-polyfill.js" |
|
20 |
- "/test-polyfill.js" |
|
21 |
browserify: |
|
22 |
- options: |
|
23 |
dedupe: false |
templetes/node_modules/string.prototype.trimend/.editorconfig | ||
---|---|---|
1 |
root = true |
|
2 |
|
|
3 |
[*] |
|
4 |
indent_style = tab |
|
5 |
indent_size = 4 |
|
6 |
end_of_line = lf |
|
7 |
charset = utf-8 |
|
8 |
trim_trailing_whitespace = true |
|
9 |
insert_final_newline = true |
|
10 |
max_line_length = 150 |
|
11 |
|
|
12 |
[CHANGELOG.md] |
|
13 |
indent_style = space |
|
14 |
indent_size = 2 |
|
15 |
|
|
16 |
[*.json] |
|
17 |
max_line_length = off |
|
18 |
|
|
19 |
[Makefile] |
|
20 |
max_line_length = off |
templetes/node_modules/string.prototype.trimleft/.editorconfig | ||
---|---|---|
1 |
root = true |
|
2 |
|
|
3 |
[*] |
|
4 |
indent_style = tab |
|
5 |
indent_size = 4 |
|
6 |
end_of_line = lf |
|
7 |
charset = utf-8 |
|
8 |
trim_trailing_whitespace = true |
|
9 |
insert_final_newline = true |
|
10 |
max_line_length = 150 |
|
11 |
|
|
12 |
[CHANGELOG.md] |
|
13 |
indent_style = space |
|
14 |
indent_size = 2 |
|
15 |
|
|
16 |
[*.json] |
|
17 |
max_line_length = off |
|
18 |
|
|
19 |
[Makefile] |
|
20 |
max_line_length = off |
templetes/node_modules/string.prototype.trimright/.editorconfig | ||
---|---|---|
1 |
root = true |
|
2 |
|
|
3 |
[*] |
|
4 |
indent_style = tab |
|
5 |
indent_size = 4 |
|
6 |
end_of_line = lf |
|
7 |
charset = utf-8 |
|
8 |
trim_trailing_whitespace = true |
|
9 |
insert_final_newline = true |
|
10 |
max_line_length = 150 |
|
11 |
|
|
12 |
[CHANGELOG.md] |
|
13 |
indent_style = space |
|
14 |
indent_size = 2 |
|
15 |
|
|
16 |
[*.json] |
|
17 |
max_line_length = off |
|
18 |
|
|
19 |
[Makefile] |
|
20 |
max_line_length = off |
templetes/node_modules/string.prototype.trimstart/.editorconfig | ||
---|---|---|
1 |
root = true |
|
2 |
|
|
3 |
[*] |
|
4 |
indent_style = tab |
|
5 |
indent_size = 4 |
|
6 |
end_of_line = lf |
|
7 |
charset = utf-8 |
|
8 |
trim_trailing_whitespace = true |
|
9 |
insert_final_newline = true |
|
10 |
max_line_length = 150 |
|
11 |
|
|
12 |
[CHANGELOG.md] |
|
13 |
indent_style = space |
|
14 |
indent_size = 2 |
|
15 |
|
|
16 |
[*.json] |
|
17 |
max_line_length = off |
|
18 |
|
|
19 |
[Makefile] |
|
20 |
max_line_length = off |
templetes/node_modules/worker-farm/.editorconfig | ||
---|---|---|
1 |
# This file is for unifying the coding style for different editors and IDEs |
|
2 |
# editorconfig.org |
|
3 |
|
|
4 |
root = true |
|
5 |
|
|
6 |
[*] |
|
7 |
end_of_line = lf |
|
8 |
charset = utf-8 |
|
9 |
insert_final_newline = true |
|
10 |
trim_trailing_whitespace = true |
|
11 |
indent_style = space |
|
12 |
indent_size = 2 |
|
13 |
|
|
14 |
[*.js] |
|
15 |
max_line_length = 80 |
|
16 |
View |
Také k dispozici: Unified diff
re #8149 - odstranění šablon 3 část