Skip to content

Commit d202ef4

Browse files
authoredJan 24, 2020
Migrate to mkdocs. (#325)
* Install mkdocs. Uninstall Lektor. * Migrate content to the mkdocs. * Remove Lektor project. * Migrate to Python 3.8. * Setup remarklint. * Setup pre-commit. * Setup prettier. * Setup yamllint hook. * Setup yamllint. * Remove unused metadata. * Setup vale tool. * Setup invoke tool. * Setup Google Analytics. * Correct eslint config according to the prettier tool. * Correct stylelint config according to the prettier tool. * Setup black and flake8 pre-commit hooks. * Merge slides and root webpack projects. * Setup doctest. * Fix doctests. * Setup Azure Pipeline. * Add empty CSS file to run linter. * Correct azure pipeline name. * Add poetry to PATH. * Ignore pycache directory. * Split too long line in shell script. * Add deploy invoke task. * Correct bash script syntax written in the Yaml file. * Custom domain support.
1 parent 2b0c841 commit d202ef4

File tree

111 files changed

+11949
-19607
lines changed

Some content is hidden

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

111 files changed

+11949
-19607
lines changed
 

‎.eslintrc.js

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
module.exports = {
2-
extends: 'airbnb-base',
2+
extends: "prettier",
33
env: {
44
browser: true
55
},
6-
parser: 'babel-eslint',
7-
plugins: [
8-
'babel',
9-
],
6+
parser: "babel-eslint",
7+
plugins: ["babel"],
108
rules: {
11-
'babel/semi': 1,
12-
},
9+
"babel/semi": 1
10+
}
1311
};

‎.flake8

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[flake8]
2+
max-line-length = 88

0 commit comments

Comments
 (0)
Please sign in to comment.