Skip to content

Commit f5db26a

Browse files
committed
commit website
0 parents  commit f5db26a

File tree

888 files changed

+105499
-0
lines changed

Some content is hidden

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

888 files changed

+105499
-0
lines changed

.babelrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"presets": [
3+
"@babel/preset-env"
4+
]
5+
}

.depcheckrc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Usage with a configuration file
2+
# <https://github.com/depcheck/depcheck#usage-with-a-configuration-file>
3+
ignores: [
4+
"@babel/*",
5+
"bower",
6+
"bootstrap",
7+
"depcheck",
8+
"@fontsource/*",
9+
"webpack-cli",
10+
]

.editorconfig

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# https://editorconfig.org/
2+
3+
root = true
4+
5+
[*]
6+
indent_style = space
7+
indent_size = 2
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
end_of_line = lf
11+
charset = utf-8
12+
13+
# Docstrings and comments use max_line_length = 79
14+
[*.py]
15+
max_line_length = 88
16+
17+
# Use 2 spaces for the HTML, JS files
18+
[*.{html,js}]
19+
indent_size = 2
20+
21+
# The JSON files contain newlines inconsistently
22+
[*.json]
23+
indent_size = 2
24+
insert_final_newline = ignore
25+
26+
# Minified JavaScript files shouldn't be changed
27+
[**.min.js]
28+
indent_style = ignore
29+
insert_final_newline = ignore
30+
31+
# Makefiles always use tabs for indentation
32+
[Makefile]
33+
indent_style = tab
34+
35+
# Batch files use tabs for indentation
36+
[*.bat]
37+
indent_style = tab
38+
39+
[docs/**.txt]
40+
max_line_length = 79
41+
42+
[*.yml]
43+
indent_size = 2
44+
45+
# Google Shell Style Guide 2.02
46+
# https://google.github.io/styleguide/shellguide.html#s5-formatting
47+
[{,.bash*,.env,*.conf,*.sh}]
48+
indent_style = space
49+
indent_size = 2
50+
max_line_length = 80

.eslintrc.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es2021": true,
5+
"es6": true
6+
},
7+
"extends": ["eslint:recommended", "prettier"],
8+
"parserOptions": {
9+
"ecmaVersion": 12
10+
},
11+
"rules": {}
12+
}

.gitattributes

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Configuring Git Large File Storage
2+
#
3+
# brew install git-lfs
4+
# git lfs install
5+
# git lfs track {"*.eot","*.ico","*.gif","*.jpg","*.pdf","*.png","*.ttf","*.svg","*.woff","*.woff2"}
6+
#
7+
# Documentation
8+
# ------------
9+
# - https://git-scm.com/docs/gitattributes
10+
# - https://docs.github.com/fr/repositories/working-with-files/managing-large-files/configuring-git-large-file-storage
11+
# - https://confluence.atlassian.com/bbkb/add-commonly-used-binaries-to-git-lfs-1188409676.html
12+
#
13+
*.png filter=lfs diff=lfs merge=lfs -text
14+
*.svg filter=lfs diff=lfs merge=lfs -text
15+
*.gif filter=lfs diff=lfs merge=lfs -text
16+
*.jpg filter=lfs diff=lfs merge=lfs -text
17+
*.pdf filter=lfs diff=lfs merge=lfs -text
18+
*.eot filter=lfs diff=lfs merge=lfs -text
19+
*.ico filter=lfs diff=lfs merge=lfs -text
20+
*.ttf filter=lfs diff=lfs merge=lfs -text
21+
*.woff filter=lfs diff=lfs merge=lfs -text
22+
*.woff2 filter=lfs diff=lfs merge=lfs -text

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @JV-conseil

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
---
2+
name: Bug Report 🐞
3+
about: Did you find a bug?
4+
title: "Bug Report 🐞 {short-description}"
5+
labels: bug, triage
6+
assignees: "JV-conseil"
7+
---
8+
9+
<!--
10+
11+
Hi there 👋 Thank you for discovering and submitting an issue.
12+
13+
Before you submit this; let's make sure of a few things.
14+
Please make sure the following boxes are ticked if they are correct.
15+
If not, please try and fulfill these first.
16+
17+
-->
18+
19+
- [ ] I have activated the browser Private mode to evaluate if the error still happens.
20+
- [ ] I have turn-off any extension on my browser like adblock that may interfere with the app behaviour.
21+
- [ ] I am on the [latest][latest] version.
22+
- [ ] I have checked that no other similar [issues][issues] or [discussions][discussions] are already opened and believe that this is not a duplicate.
23+
- [ ] If an exception occurs when executing a command, I execute it again in debug mode (`DEBUF = True` in settings).
24+
25+
---
26+
27+
### Describe the bug 🐛
28+
29+
> A clear and precise description of what the bug is, please be descriptive! Thanks 🙌
30+
31+
### To Reproduce 🔂
32+
33+
> Steps to reproduce the behavior:
34+
>
35+
> 1. Go to '...'
36+
> 2. Click on '....'
37+
> 3. Scroll down to '....'
38+
> 4. See error
39+
40+
### Expected behavior 🚀
41+
42+
> A clear and concise description of what you expected to happen.
43+
44+
### Configuration ⚙️
45+
46+
> A clear and concise description of your configuration.
47+
>
48+
> Python 3.11.0
49+
> PostgreSQL Server 14.5
50+
> Django version 4.1.2
51+
> ...
52+
53+
### Screenshots 📸
54+
55+
> If applicable, add screenshots to help explain your problem.
56+
57+
### Diagnosis attempts 🩺
58+
59+
> `curl "https://some.domain.name" --verbose`
60+
61+
### Additional context 🌍
62+
63+
> Add any other context about the problem here.
64+
65+
<!-- links -->
66+
67+
[discussions]: https://github.com/JV-conseil/jekyll-theme-deepdive/discussions
68+
[issues]: https://github.com/JV-conseil/jekyll-theme-deepdive/issues
69+
[latest]: https://github.com/JV-conseil/jekyll-theme-deepdive/releases/latest

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#
2+
# Configuring the template chooser
3+
# <https://docs.github.com/en/communities/using-templates-to-encourage-useful-issues-and-pull-requests/configuring-issue-templates-for-your-repository#configuring-the-template-chooser>
4+
#
5+
blank_issues_enabled: true
6+
contact_links:
7+
- name: GitHub Security Bug Bounty
8+
url: https://bounty.github.com/
9+
about: Please report security vulnerabilities here.
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
name: Feature Request 🎁
3+
about: Do you have ideas for new features and improvements?
4+
title: ""
5+
labels: feature, triage
6+
assignees: "JV-conseil"
7+
---
8+
9+
<!--
10+
Hi there! Thank you for discovering and submitting an issue.
11+
12+
Before you submit this; let's make sure of a few things.
13+
Please make sure the following boxes are ticked if they are correct.
14+
If not, please try and fulfill these first.
15+
-->
16+
17+
<!-- Checked checkbox should look like this: [x] -->
18+
19+
- [ ] I have searched the [issues] of this repo and believe that this is not a duplicate.
20+
- [ ] If an exception occurs when executing a command, I executed it again in debug mode (`DEBUF = True` in settings).
21+
22+
**Is your feature request related to a problem? Please describe.**
23+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
24+
25+
**Describe the solution you'd like**
26+
A clear and concise description of what you want to happen.
27+
28+
**Describe alternatives you've considered**
29+
A clear and concise description of any alternative solutions or features you've considered.
30+
31+
**Additional context**
32+
Add any other context or screenshots about the feature request here.
33+
34+
<!-- Definition -->
35+
36+
[issues]: https://github.com/JV-conseil/jekyll-theme-deepdive/issues

.github/codeql/codeql-config.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
2+
# Specifying directories to scan
3+
# See <https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/customizing-code-scanning#specifying-directories-to-scan>
4+
# Copyright (c) 2019-2024 JV-conseil, All rights reserved
5+
6+
name: "CodeQL config"
7+
8+
# paths:
9+
# - _includes/js
10+
# - _includes/scripts
11+
# - _js
12+
# - .scripts
13+
paths-ignore:
14+
- 'assets/js/service-worker.js'
15+
- 'assets/js/sw.js'
16+
# - 'assets/*'
17+
# - 'assets/js/bower_components/*'
18+
# - 'assets/js/legacy/*'
19+
# - 'assets/js/service-worker.js'
20+
# - 'assets/js/sw.js'
21+
- '_site/*'

.github/dependabot.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "npm"
9+
directory: "/"
10+
schedule:
11+
interval: "weekly"
12+
versioning-strategy: "increase"
13+
# When you use this option, the settings for this package manager will no longer affect any pull requests raised for security updates.
14+
# see <https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#target-branch>
15+
target-branch: "dev"
16+
- package-ecosystem: "bundler"
17+
directory: "/"
18+
schedule:
19+
interval: "weekly"
20+
versioning-strategy: "increase"
21+
target-branch: "dev"

.github/workflows/codeql.yml

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
# For most projects, this workflow file will not need changing; you simply need
2+
# to commit it to your repository.
3+
#
4+
# You may wish to alter this file to override the set of languages analyzed,
5+
# or to provide custom queries or build logic.
6+
#
7+
# ******** NOTE ********
8+
# We have attempted to detect the languages in your repository. Please check
9+
# the `language` matrix defined below to confirm you have the correct set of
10+
# supported CodeQL languages.
11+
#
12+
# Copyright (c) 2019-2024 JV-conseil, All rights reserved
13+
name: "CodeQL"
14+
15+
on:
16+
push:
17+
branches: [ "dev" ]
18+
# pull_request:
19+
# # The branches below must be a subset of the branches above
20+
# branches: [ "dev" ]
21+
schedule:
22+
- cron: '22 9 * * 0'
23+
24+
jobs:
25+
analyze:
26+
name: Analyze
27+
runs-on: ubuntu-latest
28+
permissions:
29+
actions: read
30+
contents: read
31+
security-events: write
32+
33+
strategy:
34+
fail-fast: false
35+
matrix:
36+
language: [ 'javascript', 'ruby' ]
37+
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
38+
# Use only 'java' to analyze code written in Java, Kotlin or both
39+
# Use only 'javascript' to analyze code written in JavaScript, TypeScript or both
40+
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
41+
42+
steps:
43+
- name: Checkout repository
44+
uses: actions/checkout@v3
45+
46+
# Initializes the CodeQL tools for scanning.
47+
- name: Initialize CodeQL
48+
uses: github/codeql-action/init@v2
49+
with:
50+
languages: ${{ matrix.language }}
51+
# If you wish to specify custom queries, you can do so here or in a config file.
52+
# By default, queries listed here will override any specified in a config file.
53+
# Prefix the list here with "+" to use these queries and those in the config file.
54+
55+
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
56+
# queries: security-extended,security-and-quality
57+
58+
# Configuration file
59+
# See <https://github.com/github/codeql-action#configuration-file>
60+
# Copyright (c) 2019-2024 JV-conseil, All rights reserved
61+
config-file: ./.github/codeql/codeql-config.yml
62+
63+
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, or Java).
64+
# If this step fails, then you should remove it and run the build manually (see below)
65+
- name: Autobuild
66+
uses: github/codeql-action/autobuild@v2
67+
68+
# ℹ️ Command-line programs to run using the OS shell.
69+
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
70+
71+
# If the Autobuild fails above, remove it and uncomment the following three lines.
72+
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
73+
74+
# - run: |
75+
# echo "Run, Build Application using script"
76+
# ./location_of_script_within_repo/buildscript.sh
77+
78+
- name: Perform CodeQL Analysis
79+
uses: github/codeql-action/analyze@v2
80+
with:
81+
category: "/language:${{matrix.language}}"

0 commit comments

Comments
 (0)