Skip to content
This repository was archived by the owner on Feb 15, 2023. It is now read-only.

Commit 3507174

Browse files
committedOct 9, 2017
Add eslint config file
1 parent 436d1b9 commit 3507174

File tree

4 files changed

+32
-0
lines changed

4 files changed

+32
-0
lines changed
 

‎.eslintrc.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
extends: afrasa/eslintrc-main.yaml

‎.npmignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
.npmignore
2+
.gitignore
3+
.eslintcache
4+
.eslintignore
5+
.eslintrc.yaml

‎index.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
throw new Error('Not implemented!');

‎package.json

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "orientx",
3+
"version": "0.1.0",
4+
"description": "An OrientDB development tools",
5+
"main": "index.js",
6+
"repository": {
7+
"type": "git",
8+
"url": "https://github.com/dastoori/orientx.git"
9+
},
10+
"bugs": {
11+
"url": "https://github.com/dastoori/orientx/issues"
12+
},
13+
"homepage": "https://github.com/dastoori/orientx#README",
14+
"author": "Rasool Dastoori",
15+
"license": "MIT",
16+
"scripts": {
17+
"lint": "eslint ."
18+
},
19+
"devDependencies": {
20+
"eslint-config-afrasa": "^1.0.1"
21+
},
22+
"engines": {
23+
"node": ">=8.0.0"
24+
}
25+
}

0 commit comments

Comments
 (0)
This repository has been archived.