Remove unused files from the repo (fixes #14)

This commit is contained in:
Felix 2020-02-15 19:04:00 +01:00
parent b3463a3fc6
commit a3b91ce05b
6 changed files with 2 additions and 75 deletions

View File

@ -1,2 +0,0 @@
> 1%
last 2 versions

View File

@ -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"
}]
}
}

View File

@ -1,5 +0,0 @@
module.exports = {
presets: [
'@vue/cli-plugin-babel/preset'
]
}

View File

@ -13,17 +13,9 @@ RUN yarn install --pure-lockfile \
COPY src/ src/
COPY public/ public/
COPY .eslintrc.js .
COPY vue.config.js .
COPY Makefile .
COPY .babelrc .
# TODO: the build works fine with only the above files, does that mean we can delete everything else?
#COPY babel.config.js .
#COPY vue.config.js .
#COPY postcss.config.js .
#COPY .eslintrc .
COPY Makefile .
COPY vue.config.js .
ENV NODE_ENV=production

View File

@ -1,5 +0,0 @@
module.exports = {
plugins: {
autoprefixer: {}
}
}

View File

@ -1,3 +0,0 @@
module.exports = {
publicPath: '/'
}