Skip to content

Commit ebd8754

Browse files
committed
adding dotfiles
1 parent 572d3fa commit ebd8754

File tree

6 files changed

+120
-0
lines changed

6 files changed

+120
-0
lines changed

.brackets.json

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"spaceUnits": 2,
3+
"useTabChar": false,
4+
"language": {
5+
"javascript": {
6+
"linting.prefer": [
7+
"ESLint"
8+
],
9+
"linting.usePreferredOnly": true
10+
},
11+
"markdown": {
12+
"wordWrap": true
13+
}
14+
},
15+
"language.fileNames": {
16+
"Jenkinsfile": "groovy"
17+
}
18+
}

.editorconfig

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
end_of_line = lf
7+
charset = utf-8
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
11+
[{package.json,*.yml}]
12+
indent_size = 2

.eslintrc.json

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"extends": "eslint:recommended",
3+
"env": {
4+
"es6": true,
5+
"node": true
6+
},
7+
"parserOptions": {
8+
"ecmaVersion": 8
9+
},
10+
"rules": {
11+
"indent": ["error", 2, {
12+
"SwitchCase": 1
13+
}],
14+
"linebreak-style": ["error", "unix"],
15+
"quotes": ["error", "single"],
16+
"semi": ["error", "always"]
17+
}
18+
}

.gitattributes

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
*.js text eol=lf
5+
*.jsx text eol=lf
6+
*.mjs text eol=lf
7+
*.json text eol=lf
8+
*.html text eol=lf
9+
*.md text eol=lf
10+
*.yml text eol=lf
11+
*.css text eol=lf
12+
*.less text eol=lf
13+
*.scss text eol=lf
14+
*.sass text eol=lf
15+
*.svg text eol=lf
16+
*.xml text eol=lf
17+
*.sh text eol=lf
18+
19+
# Custom for Visual Studio
20+
*.cs diff=csharp
21+
22+
# Standard to msysgit
23+
*.doc diff=astextplain
24+
*.DOC diff=astextplain
25+
*.docx diff=astextplain
26+
*.DOCX diff=astextplain
27+
*.dot diff=astextplain
28+
*.DOT diff=astextplain
29+
*.pdf diff=astextplain
30+
*.PDF diff=astextplain
31+
*.rtf diff=astextplain
32+
*.RTF diff=astextplain

.gitignore

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Windows image file caches
2+
Thumbs.db
3+
ehthumbs.db
4+
Desktop.ini
5+
6+
# Recycle Bin used on file shares
7+
$RECYCLE.BIN/
8+
9+
# Windows shortcuts
10+
*.lnk
11+
12+
# OSX
13+
.DS_Store
14+
.AppleDouble
15+
.LSOverride
16+
17+
# Thumbnails
18+
._*
19+
20+
# Files that might appear in the root of a volume
21+
.DocumentRevisions-V100
22+
.fseventsd
23+
.Spotlight-V100
24+
.TemporaryItems
25+
.Trashes
26+
.VolumeIcon.icns
27+
28+
# Directories potentially created on remote AFP share
29+
.AppleDB
30+
.AppleDesktop
31+
Network Trash Folder
32+
Temporary Items
33+
.apdisk
34+
35+
# Node stuff
36+
node_modules/
37+
coverage/
38+
.nyc_output/
39+
temp/

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock=false

0 commit comments

Comments
 (0)