Skip to content

Commit cf94987

Browse files
committed
New branch for 6.130.2.dev0
- Legacy-Id: 17832
1 parent a44a80b commit cf94987

2,877 files changed

Lines changed: 392566 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

6.130.2.dev0/.bowerrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"registry": "https://registry.bower.io"
3+
}

6.130.2.dev0/.editorconfig

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors and IDEs
3+
# editorconfig.org
4+
5+
root = true
6+
7+
# Settings for IETF datatracker
8+
9+
[*]
10+
indent_style = space
11+
indent_size = 4
12+
end_of_line = lf
13+
charset = utf-8
14+
# to avoid tripping Henrik's commit hook:
15+
trim_trailing_whitespace = false
16+
insert_final_newline = false

6.130.2.dev0/.eslintrc.js

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
module.exports = {
2+
rules: {
3+
indent: [2, 4],
4+
camelcase: 0,
5+
"require-jsdoc": 0,
6+
quotes: [2, "double"],
7+
"no-multiple-empty-lines": [2, {max: 2}],
8+
"quote-props": [2, "as-needed"],
9+
"brace-style": [2, "1tbs", {allowSingleLine: true}]
10+
},
11+
env: {
12+
browser: true,
13+
jquery: true
14+
},
15+
globals: {
16+
d3: true
17+
},
18+
extends: "google"
19+
};

6.130.2.dev0/.gitignore

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
/.coverage
2+
/.mypy_cache
3+
/.project
4+
/.pydevproject
5+
/.Python
6+
/.settings
7+
/.tmp
8+
/.factoryboy_random_state
9+
/attic
10+
/bin
11+
/etc
12+
/env
13+
/ghostdriver.log
14+
/htmlcov
15+
/include
16+
/INSTALL.pdf
17+
/latest-coverage.json
18+
/lib
19+
/local
20+
/media
21+
/mergelog
22+
/mergequeue
23+
/minimum-requirements.txt
24+
/pip-selfcheck.json
25+
/selenium
26+
/settings_local.py
27+
/share
28+
/static
29+
/testresult
30+
/tmp
31+
/tmp-nomcom-public-keys-dir
32+
/trunk27
33+
/trunk36
34+
/trunk37
35+
/unix.tag
36+
*.pyc
37+
__pycache__

0 commit comments

Comments
 (0)