alan
/
sfs
1
Fork 0

foundation stuff

This commit is contained in:
Alan Faubert 2018-10-24 12:58:14 -04:00
parent a219f6e01b
commit 795220eed6
5 changed files with 23 additions and 0 deletions

10
.eslintrc.yaml Normal file
View File

@ -0,0 +1,10 @@
env:
es6: true
node: true
extends: 'eslint:recommended'
parserOptions:
ecmaVersion: 2018
sourceType: module
rules:
no-console: off
prefer-const: error

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
/node_modules
/package-lock.json
/shrinkwrap.yaml
/yarn.lock

3
.prettierrc.yaml Normal file
View File

@ -0,0 +1,3 @@
useTabs: true
singleQuote: true
trailingComma: all

5
package.json Normal file
View File

@ -0,0 +1,5 @@
{
"dependencies": {
"mime": "*"
}
}

1
sfs Executable file
View File

@ -0,0 +1 @@
node "$(readlink -e "$0")".js "$@"