Clean up root of project directory

Problem: Project root has a handful of files that aren't used at all or
could be placed elsewhere.

Solution: Delete unused files and move the changelog to the
documentation directory with the other Markdown files (other than the
readme, of course).
This commit is contained in:
Christian Bundy 2020-04-01 15:04:57 -07:00
parent 8fc5437b6b
commit b01ff74dbc
5 changed files with 1 additions and 23 deletions

View File

@ -1,16 +0,0 @@
module.exports = {
env: {
commonjs: true,
es6: true,
node: true,
},
extends: "eslint:recommended",
globals: {
Atomics: "readonly",
SharedArrayBuffer: "readonly",
},
parserOptions: {
ecmaVersion: 2018,
},
rules: {},
};

View File

@ -1,3 +0,0 @@
.*
docs
*.tgz

View File

@ -1,3 +0,0 @@
{
"extends": "stylelint-config-recommended"
}

View File

@ -18,7 +18,7 @@
"start": "node src/index.js",
"test": "common-good check --dependency-check-suffix '-i changelog-version -i mkdirp -i nodemon -i stylelint-config-recommended'",
"preversion": "npm test",
"version": "changelog-version && git add CHANGELOG.md"
"version": "mv docs/CHANGELOG.md ./ && changelog-version && mv CHANGELOG.md docs/ && git add CHANGELOG.md"
},
"dependencies": {
"@fraction/base16-css": "^1.1.0",