forked from nutomic/joinpeertube
Remove unused files from the repo (fixes #14)
This commit is contained in:
parent
b3463a3fc6
commit
a3b91ce05b
6 changed files with 2 additions and 75 deletions
|
@ -1,2 +0,0 @@
|
||||||
> 1%
|
|
||||||
last 2 versions
|
|
50
.eslintrc
50
.eslintrc
|
@ -1,50 +0,0 @@
|
||||||
{
|
|
||||||
"env": {
|
|
||||||
"jquery": true,
|
|
||||||
"browser": true,
|
|
||||||
"es6": true
|
|
||||||
},
|
|
||||||
"extends": [
|
|
||||||
"airbnb-base",
|
|
||||||
"plugin:vue/recommended"
|
|
||||||
],
|
|
||||||
"globals": {
|
|
||||||
"__webpack_public_path__": true,
|
|
||||||
"gl": false,
|
|
||||||
"gon": false,
|
|
||||||
"localStorage": false
|
|
||||||
},
|
|
||||||
"parserOptions": {
|
|
||||||
"parser": "babel-eslint"
|
|
||||||
},
|
|
||||||
"plugins": [
|
|
||||||
"filenames",
|
|
||||||
"import",
|
|
||||||
"html",
|
|
||||||
"promise"
|
|
||||||
],
|
|
||||||
"settings": {
|
|
||||||
"html/html-extensions": [".html", ".html.raw"],
|
|
||||||
"import/resolver": {
|
|
||||||
"webpack": {
|
|
||||||
"config": "./config/webpack.config.js"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"rules": {
|
|
||||||
"filenames/match-regex": [2, "^[a-z0-9_]+$"],
|
|
||||||
"import/no-commonjs": "error",
|
|
||||||
"no-multiple-empty-lines": ["error", { "max": 1 }],
|
|
||||||
"promise/catch-or-return": "error",
|
|
||||||
"no-underscore-dangle": ["error", { "allow": ["__"]}],
|
|
||||||
"vue/html-self-closing": ["error", {
|
|
||||||
"html": {
|
|
||||||
"void": "always",
|
|
||||||
"normal": "never",
|
|
||||||
"component": "always"
|
|
||||||
},
|
|
||||||
"svg": "always",
|
|
||||||
"math": "always"
|
|
||||||
}]
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
module.exports = {
|
|
||||||
presets: [
|
|
||||||
'@vue/cli-plugin-babel/preset'
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -13,17 +13,9 @@ RUN yarn install --pure-lockfile \
|
||||||
COPY src/ src/
|
COPY src/ src/
|
||||||
COPY public/ public/
|
COPY public/ public/
|
||||||
COPY .eslintrc.js .
|
COPY .eslintrc.js .
|
||||||
COPY vue.config.js .
|
|
||||||
|
|
||||||
COPY Makefile .
|
|
||||||
COPY .babelrc .
|
COPY .babelrc .
|
||||||
|
COPY Makefile .
|
||||||
# TODO: the build works fine with only the above files, does that mean we can delete everything else?
|
COPY vue.config.js .
|
||||||
|
|
||||||
#COPY babel.config.js .
|
|
||||||
#COPY vue.config.js .
|
|
||||||
#COPY postcss.config.js .
|
|
||||||
#COPY .eslintrc .
|
|
||||||
|
|
||||||
ENV NODE_ENV=production
|
ENV NODE_ENV=production
|
||||||
|
|
||||||
|
|
|
@ -1,5 +0,0 @@
|
||||||
module.exports = {
|
|
||||||
plugins: {
|
|
||||||
autoprefixer: {}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,3 +0,0 @@
|
||||||
module.exports = {
|
|
||||||
publicPath: '/'
|
|
||||||
}
|
|
Loading…
Reference in a new issue