Skip to content

Commit

Permalink
Add initial eslint and npm config file
Browse files Browse the repository at this point in the history
  • Loading branch information
mulbc committed Dec 29, 2018
1 parent 560f1c5 commit 34f22d6
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
env:
browser: true
es6: true
extends: 'eslint:recommended'
parserOptions:
ecmaVersion: 2017
rules:
indent:
- error
- 2
linebreak-style:
- error
- unix
quotes:
- error
- single
semi:
- error
- always
19 changes: 19 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "vault-chrome-extension",
"version": "1.1.0",
"description": "This extension will access specified Vault server and authenticate",
"main": "",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zeichenanonym/vault-chrome-extension.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/zeichenanonym/vault-chrome-extension/issues"
},
"homepage": "https://github.com/zeichenanonym/vault-chrome-extension#readme"
}

0 comments on commit 34f22d6

Please sign in to comment.