Skip to content

Commit dbc5ec3

Browse files
committed
first commit :)
1 parent a9fabc0 commit dbc5ec3

File tree

3 files changed

+65
-4
lines changed

3 files changed

+65
-4
lines changed

.editorconfig

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors and IDEs
3+
# editorconfig.org
4+
5+
root = true
6+
7+
8+
[*]
9+
10+
# Change these settings to your own preference
11+
indent_style = space
12+
indent_size = 2
13+
14+
# We recommend you to keep these unchanged
15+
end_of_line = lf
16+
charset = utf-8
17+
trim_trailing_whitespace = true
18+
insert_final_newline = true
19+
20+
[*.md]
21+
trim_trailing_whitespace = false

.gitignore

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### Node template
3+
# Logs
4+
logs
5+
*.log
6+
7+
# Runtime data
8+
pids
9+
*.pid
10+
*.seed
11+
12+
# Directory for instrumented libs generated by jscoverage/JSCover
13+
lib-cov
14+
15+
# Coverage directory used by tools like istanbul
16+
coverage
17+
18+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
19+
.grunt
20+
21+
# node-waf configuration
22+
.lock-wscript
23+
24+
# Compiled binary addons (http://nodejs.org/api/addons.html)
25+
build/Release
26+
27+
# Dependency directory
28+
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
29+
node_modules
30+
bower_components
31+
32+
#other
33+
.idea

package.json

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,20 @@
1717
"type": "git",
1818
"url": "https://github.com/arastu/iran-administrative-divisions.git"
1919
},
20+
"keywords": [
21+
"iran",
22+
"administrative divisions",
23+
"countries",
24+
"world",
25+
"json",
26+
"xml",
27+
"persian",
28+
"farsi"
29+
],
2030
"author": "Touhid Arastu <touhid.arastu@gmail.com> (http://arastu.ir/)",
2131
"license": "MIT",
2232
"bugs": {
2333
"url": "https://github.com/arastu/iran-administrative-divisions-json/issues"
2434
},
25-
"homepage": "https://github.com/arastu/iran-administrative-divisions-json#readme",
26-
"keywords": {
27-
"iran","administrative-divisions","countries","world","json","xml","persian","farsi"
28-
}
35+
"homepage": "https://github.com/arastu/iran-administrative-divisions-json#readme"
2936
}

0 commit comments

Comments
 (0)