Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
BASE_URL=
API_URL=

CLIENT_ID=
CLIENT_SECRET=
NUXT_SECRET=

API_TOKEN=
DISCORD_CLIENT_ID=
DISCORD_CLIENT_SECRET=

BLAGUES_API_TOKEN=

SEO=false
29 changes: 2 additions & 27 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,31 +1,6 @@
{
"root": true,
"env": {
"browser": true,
"node": true
},
"parserOptions": {
"parser": "@babel/eslint-parser",
"requireConfigFile": false
},
"extends": ["@nuxtjs", "plugin:nuxt/recommended", "prettier"],
"plugins": ["prettier"],
"extends": ["@nuxtjs/eslint-config-typescript"],
"rules": {
"vue/no-v-html": "off",
"curly": [2, "multi-line"],
"vue/attribute-hyphenation": ["error", "never"],
"unicorn/number-literal-case": "off",
"no-console": "warn",
"no-debugger": "warn",
"prettier/prettier": [
2,
{
"singleQuote": true,
"semi": false,
"tabWidth": 2,
"endOfLine": "lf",
"printWidth": 120
}
]
"vue/multi-word-component-names": "off"
}
}
95 changes: 8 additions & 87 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,90 +1,11 @@
# Created by .ignore support plugin (hsz.mobi)
### Node template
# Logs
/logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# TypeScript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

# parcel-bundler cache (https://parceljs.org/)
.cache

# next.js build output
.next

# nuxt.js build output
node_modules
*.log*
.nuxt

# Nuxt generate
.nitro
.cache
.output
.env
dist

# vuepress build output
.vuepress/dist

# Serverless directories
.serverless

# IDE / Editor
.idea

# Service worker
sw.*

# macOS
.DS_Store

# Vim swap files
*.swp
.stylelintcache
sw.js
2 changes: 2 additions & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
shamefully-hoist=true
strict-peer-dependencies=false
1 change: 0 additions & 1 deletion .nvmrc

This file was deleted.

7 changes: 0 additions & 7 deletions .prettierrc.json

This file was deleted.

2 changes: 0 additions & 2 deletions assets/css/reset.css
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,6 @@ table {
/* apply a natural box layout model to all elements */
*,
*::before,
*::after,
*::before,
*::after {
box-sizing: border-box;
}
Expand Down
4 changes: 2 additions & 2 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'subject-case': [2, 'always', 'sentence-case'],
},
'subject-case': [2, 'always', 'sentence-case']
}
}
1 change: 1 addition & 0 deletions components/Footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ footer {
.separator {
margin: 0 8px;
}

@media screen and (max-width: 720px) {
flex-direction: column;

Expand Down
Loading