missing . files

This commit is contained in:
Grégory Lebreton 2023-12-08 10:23:01 +01:00
parent a13bd8caed
commit 8e9bee81af
3 changed files with 36 additions and 0 deletions

10
.dockerignore Normal file
View File

@ -0,0 +1,10 @@
**/*
!application/*
!ui/*
!*.md
!*.go
!*.sum
!*.mod
!*.json
!*.js

25
.eslintrc.js Normal file
View File

@ -0,0 +1,25 @@
module.exports = {
parserOptions: {
parser: "@babel/eslint-parser",
},
root: true,
env: {
node: true,
},
extends: [
"plugin:vue/recommended",
"eslint:recommended",
"prettier",
"plugin:prettier/recommended",
],
rules: {
"vue/component-name-in-template-casing": ["error", "PascalCase"],
"vue/multi-word-component-names": process.env.NODE_ENV === "production" ? "warn" : "off",
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off",
"no-unused-vars": process.env.NODE_ENV === "production" ? "off" : "warn",
},
globals: {
$nuxt: true,
},
};

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
./traefik-forward-auth.env