Skip to content
This repository was archived by the owner on Jun 7, 2023. It is now read-only.

Commit 5092945

Browse files
committed
Merge remote-tracking branch 'upstream/master' into master
2 parents 81373e3 + c77f2ad commit 5092945

39 files changed

Lines changed: 1911 additions & 717 deletions

.eslintrc.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
module.exports = {
2+
env: {
3+
browser: true,
4+
es2021: true,
5+
jquery: true,
6+
},
7+
extends: "eslint:recommended",
8+
parserOptions: {
9+
ecmaVersion: 12,
10+
sourceType: "module",
11+
},
12+
rules: {},
13+
globals: {
14+
eBookConfig: "readonly",
15+
},
16+
};

.flake8

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
[flake8]
2+
max-line-length=88
3+
ignore=F821,
4+
W503,
5+
E203, # space before :
6+
E501,
7+
E265,
8+
E266, # too many #
9+
E711,
10+
E712 # web2py needs to compare to == True or == False for queries
11+
12+
builtins=settings,
13+
request,
14+
response,
15+
db,
16+
auth,
17+
redirect,
18+
XML,
19+
URL,
20+
T,
21+
HTTP,
22+
cache,
23+
gluon,
24+
verifyInstructorStatus

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,4 @@ runestone/.DS_Store
6565
runestone/assess/.DS_Store
6666
.DS_Store
6767
.history
68+
.nova

index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ Components
2222
:maxdepth: 1
2323
:glob:
2424

25+
runestone/overview
2526
runestone/*/toctree
2627
runestone/__init__.py
2728
runestone/__main__.py

0 commit comments

Comments
 (0)