missing . files
This commit is contained in:
parent
a13bd8caed
commit
8e9bee81af
10
.dockerignore
Normal file
10
.dockerignore
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
**/*
|
||||||
|
|
||||||
|
!application/*
|
||||||
|
!ui/*
|
||||||
|
!*.md
|
||||||
|
!*.go
|
||||||
|
!*.sum
|
||||||
|
!*.mod
|
||||||
|
!*.json
|
||||||
|
!*.js
|
||||||
25
.eslintrc.js
Normal file
25
.eslintrc.js
Normal 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
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
./traefik-forward-auth.env
|
||||||
Loading…
x
Reference in New Issue
Block a user