adding dotfiles

This commit is contained in:
Kiril Vatev 2020-01-18 00:30:30 -05:00
parent 9be73629b2
commit 5d5f23b441
6 changed files with 120 additions and 0 deletions

18
.brackets.json Normal file
View File

@ -0,0 +1,18 @@
{
"spaceUnits": 2,
"useTabChar": false,
"language": {
"javascript": {
"linting.prefer": [
"ESLint"
],
"linting.usePreferredOnly": true
},
"markdown": {
"wordWrap": true
}
},
"language.fileNames": {
"Jenkinsfile": "groovy"
}
}

12
.editorconfig Normal file
View File

@ -0,0 +1,12 @@
root = true
[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
[{package.json,*.yml}]
indent_size = 2

18
.eslintrc.json Normal file
View File

@ -0,0 +1,18 @@
{
"extends": "eslint:recommended",
"env": {
"es6": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 8
},
"rules": {
"indent": ["error", 2, {
"SwitchCase": 1
}],
"linebreak-style": ["error", "unix"],
"quotes": ["error", "single"],
"semi": ["error", "always"]
}
}

32
.gitattributes vendored Normal file
View File

@ -0,0 +1,32 @@
# Auto detect text files and perform LF normalization
* text=auto
*.js text eol=lf
*.jsx text eol=lf
*.mjs text eol=lf
*.json text eol=lf
*.html text eol=lf
*.md text eol=lf
*.yml text eol=lf
*.css text eol=lf
*.less text eol=lf
*.scss text eol=lf
*.sass text eol=lf
*.svg text eol=lf
*.xml text eol=lf
*.sh text eol=lf
# Custom for Visual Studio
*.cs diff=csharp
# Standard to msysgit
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain

39
.gitignore vendored Normal file
View File

@ -0,0 +1,39 @@
# Windows image file caches
Thumbs.db
ehthumbs.db
Desktop.ini
# Recycle Bin used on file shares
$RECYCLE.BIN/
# Windows shortcuts
*.lnk
# OSX
.DS_Store
.AppleDouble
.LSOverride
# Thumbnails
._*
# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
# Directories potentially created on remote AFP share
.AppleDB
.AppleDesktop
Network Trash Folder
Temporary Items
.apdisk
# Node stuff
node_modules/
coverage/
.nyc_output/
temp/

1
.npmrc Normal file
View File

@ -0,0 +1 @@
package-lock=false