Skip to content

Commit 3213c80

Browse files
committed
🎉 Initial Commit
0 parents  commit 3213c80

File tree

75 files changed

+2495
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+2495
-0
lines changed

.babelrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"presets": [
3+
"latest"
4+
]
5+
}

.bowerrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"directory": "bower_components"
3+
}

.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 = tab
12+
indent_size = 1
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

.eslintignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
2+
.tmp/
3+
public/
4+
node_modules/
5+
bower_components/

.eslintrc

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
2+
{
3+
// Extend existing configuration
4+
// from ESlint and eslint-plugin-react defaults.
5+
"extends": [
6+
// "eslint:recommended", "plugin:react/recommended"
7+
],
8+
// Enable ES6 support. If you want to use custom Babel
9+
// features, you will need to enable a custom parser
10+
// as described in a section below.
11+
"parserOptions": {
12+
"ecmaVersion": 6,
13+
"sourceType": "module"
14+
},
15+
"env": {
16+
"browser": true,
17+
"node": true
18+
},
19+
// Enable custom plugin known as eslint-plugin-react
20+
"plugins": [
21+
// "react"
22+
],
23+
"rules": {
24+
// Disable `no-console` rule
25+
"no-console": 0,
26+
// Give a warning if identifiers contain underscores
27+
// "no-underscore-dangle": 1,
28+
// Default to single quotes and raise an error if something
29+
// else is used
30+
"quotes": [2, "single"]
31+
}
32+
}

.gitattributes

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Set the default behavior, in case people don't have core.autocrlf set.
2+
* text=auto
3+
4+
# Enforce Unix newlines
5+
*.css text eol=lf
6+
*.html text eol=lf
7+
*.js text eol=lf
8+
*.json text eol=lf
9+
*.md text eol=lf
10+
*.scss text eol=lf
11+
*.svg text eol=lf
12+
*.xml text eol=lf
13+
*.yml text eol=lf
14+
15+
# Denote all files that are truly binary and should not be modified.
16+
*.png binary
17+
*.jpg binary

.gitignore

Lines changed: 255 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,255 @@
1+
2+
# Created by https://www.gitignore.io/api/bower,intellij,linux,macos,node,osx,sass,sublimetext,visualstudiocode,webstorm,windows
3+
4+
### OSX ###
5+
*.DS_Store
6+
.AppleDouble
7+
.LSOverride
8+
9+
# Icon must end with two \r
10+
Icon
11+
# Thumbnails
12+
._*
13+
# Files that might appear in the root of a volume
14+
.DocumentRevisions-V100
15+
.fseventsd
16+
.Spotlight-V100
17+
.TemporaryItems
18+
.Trashes
19+
.VolumeIcon.icns
20+
.com.apple.timemachine.donotpresent
21+
# Directories potentially created on remote AFP share
22+
.AppleDB
23+
.AppleDesktop
24+
Network Trash Folder
25+
Temporary Items
26+
.apdisk
27+
28+
29+
### Bower ###
30+
bower_components
31+
.bower-cache
32+
.bower-registry
33+
.bower-tmp
34+
35+
36+
### Linux ###
37+
*~
38+
39+
# temporary files which can be created if a process still has a handle open of a deleted file
40+
.fuse_hidden*
41+
42+
# KDE directory preferences
43+
.directory
44+
45+
# Linux trash folder which might appear on any partition or disk
46+
.Trash-*
47+
48+
# .nfs files are created when an open file is removed but is still being accessed
49+
.nfs*
50+
51+
52+
### macOS ###
53+
# Icon must end with two \r
54+
# Thumbnails
55+
# Files that might appear in the root of a volume
56+
# Directories potentially created on remote AFP share
57+
58+
59+
### Node ###
60+
# Logs
61+
logs
62+
*.log
63+
npm-debug.log*
64+
65+
# Runtime data
66+
pids
67+
*.pid
68+
*.seed
69+
*.pid.lock
70+
71+
# Directory for instrumented libs generated by jscoverage/JSCover
72+
lib-cov
73+
74+
# Coverage directory used by tools like istanbul
75+
coverage
76+
77+
# nyc test coverage
78+
.nyc_output
79+
80+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
81+
.grunt
82+
83+
# node-waf configuration
84+
.lock-wscript
85+
86+
# Compiled binary addons (http://nodejs.org/api/addons.html)
87+
build/Release
88+
89+
# Dependency directories
90+
node_modules
91+
jspm_packages
92+
93+
# Optional npm cache directory
94+
.npm
95+
96+
# Optional eslint cache
97+
.eslintcache
98+
99+
# Optional REPL history
100+
.node_repl_history
101+
102+
# Output of 'npm pack'
103+
*.tgz
104+
105+
106+
### Intellij ###
107+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
108+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
109+
110+
# User-specific stuff:
111+
.idea/workspace.xml
112+
.idea/tasks.xml
113+
114+
# Sensitive or high-churn files:
115+
.idea/dataSources.ids
116+
.idea/dataSources.xml
117+
.idea/dataSources.local.xml
118+
.idea/sqlDataSources.xml
119+
.idea/dynamic.xml
120+
.idea/uiDesigner.xml
121+
122+
# Gradle:
123+
.idea/gradle.xml
124+
.idea/libraries
125+
126+
# Mongo Explorer plugin:
127+
.idea/mongoSettings.xml
128+
129+
## File-based project format:
130+
*.iws
131+
132+
## Plugin-specific files:
133+
134+
# IntelliJ
135+
/out/
136+
137+
# mpeltonen/sbt-idea plugin
138+
.idea_modules/
139+
140+
# JIRA plugin
141+
atlassian-ide-plugin.xml
142+
143+
# Crashlytics plugin (for Android Studio and IntelliJ)
144+
com_crashlytics_export_strings.xml
145+
crashlytics.properties
146+
crashlytics-build.properties
147+
fabric.properties
148+
149+
### Intellij Patch ###
150+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
151+
152+
# *.iml
153+
# modules.xml
154+
# .idea/misc.xml
155+
# *.ipr
156+
157+
158+
### Sass ###
159+
.sass-cache/
160+
*.css.map
161+
162+
163+
### SublimeText ###
164+
# cache files for sublime text
165+
*.tmlanguage.cache
166+
*.tmPreferences.cache
167+
*.stTheme.cache
168+
169+
# workspace files are user-specific
170+
*.sublime-workspace
171+
172+
# project files should be checked into the repository, unless a significant
173+
# proportion of contributors will probably not be using SublimeText
174+
# *.sublime-project
175+
176+
# sftp configuration file
177+
sftp-config.json
178+
179+
# Package control specific files
180+
Package Control.last-run
181+
Package Control.ca-list
182+
Package Control.ca-bundle
183+
Package Control.system-ca-bundle
184+
Package Control.cache/
185+
Package Control.ca-certs/
186+
bh_unicode_properties.cache
187+
188+
# Sublime-github package stores a github token in this file
189+
# https://packagecontrol.io/packages/sublime-github
190+
GitHub.sublime-settings
191+
192+
193+
### VisualStudioCode ###
194+
.vscode/*
195+
!.vscode/settings.json
196+
!.vscode/tasks.json
197+
!.vscode/launch.json
198+
199+
200+
### WebStorm ###
201+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
202+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
203+
204+
# User-specific stuff:
205+
206+
# Sensitive or high-churn files:
207+
208+
# Gradle:
209+
210+
# Mongo Explorer plugin:
211+
212+
## File-based project format:
213+
214+
## Plugin-specific files:
215+
216+
# IntelliJ
217+
218+
# mpeltonen/sbt-idea plugin
219+
220+
# JIRA plugin
221+
222+
# Crashlytics plugin (for Android Studio and IntelliJ)
223+
224+
### WebStorm Patch ###
225+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
226+
227+
# *.iml
228+
# modules.xml
229+
# .idea/misc.xml
230+
# *.ipr
231+
232+
233+
### Windows ###
234+
# Windows image file caches
235+
Thumbs.db
236+
ehthumbs.db
237+
238+
# Folder config file
239+
Desktop.ini
240+
241+
# Recycle Bin used on file shares
242+
$RECYCLE.BIN/
243+
244+
# Windows Installer files
245+
*.cab
246+
*.msi
247+
*.msm
248+
*.msp
249+
250+
# Windows shortcuts
251+
*.lnk
252+
253+
# other folder and files
254+
.tmp
255+
test

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
### 0.0.1
2+
3+
* initial structure

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#TheranJS website HTML template

bower.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"name": "tehranjs-website-html-template",
3+
"private": true,
4+
"dependencies": {
5+
"sass-mq": "^3.2.9"
6+
},
7+
"dev-dependencies": {
8+
"inuitcss": "^6.0.0-beta.4"
9+
},
10+
"overrides": {}
11+
}

0 commit comments

Comments
 (0)