Skip to content

Commit

Permalink
WIP: config project
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavochavarria committed Sep 22, 2019
1 parent cfbdcbf commit 1e993c3
Show file tree
Hide file tree
Showing 5 changed files with 1,178 additions and 5 deletions.
18 changes: 18 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"env": {
"browser": true,
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/node_modules
1 change: 0 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
export const dnic = (dni) => {
//check entries


};
12 changes: 8 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "dnic",
"version": "1.0.0",
"description": "DNI validator",
"description": "ID Nicaraguan validator",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nerdify/DNic-js.git"
"url": "git+https://github.com/nerdify/Dnic.git"
},
"keywords": [
"dni",
Expand All @@ -19,7 +19,11 @@
"author": "Gustavo Chavarria",
"license": "ISC",
"bugs": {
"url": "https://github.com/nerdify/DNic-js/issues"
"url": "https://github.com/nerdify/Dnic/issues"
},
"homepage": "https://github.com/nerdify/DNic-js#readme"
"homepage": "https://github.com/nerdify/Dnic#readme",
"devDependencies": {
"eslint": "^6.4.0",
"eslint-plugin-import": "^2.18.2"
}
}
Loading

0 comments on commit 1e993c3

Please sign in to comment.