Skip to content

Commit

Permalink
Update configs
Browse files Browse the repository at this point in the history
  • Loading branch information
Tiago Porto committed May 29, 2016
1 parent 7830b03 commit cb9fbc4
Show file tree
Hide file tree
Showing 7 changed files with 210 additions and 178 deletions.
9 changes: 3 additions & 6 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,14 @@ root = true
charset = utf-8
end_of_line = lf
indent_size = 4
indent_style = tab
indent_style = space
trim_trailing_whitespace = true
insert_final_newline = true

[{package.json,bower.json,.bowerrc,.csslintrc,.eslintrc,.gitignore,.gitattributes}]
[{*.json,.bowerrc,.csslintrc,.eslintrc,.gitignore,.gitattributes}]
indent_size = 2
indent_style = space
insert_final_newline = false

[*.md,*.json]
indent_size = 4
indent_style = space
[*.md]
insert_final_newline = false
trim_trailing_whitespace = false
4 changes: 2 additions & 2 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@
"eol-last": 0, // enforce newline at the end of file, with no multiple empty lines
"func-names": 0, // require function expressions to have a name (off by default)
"func-style": [0, "declaration"], // enforces use of function declarations or expressions (off by default)
"indent": [1, "tab"], // this option sets a specific tab width for your code (off by default)
"indent": [2, 4, {"VariableDeclarator": 1}], // this option sets a specific tab width for your code (off by default)
"key-spacing": [0, { "beforeColon": false, "afterColon": true }], // enforces spacing between keys and values in object literal properties
"lines-around-comment": 0, // enforces empty lines around comments (off by default)
"linebreak-style": [2, "unix"], // disallow mixed 'LF' and 'CRLF' as linebreaks (off by default)
Expand Down Expand Up @@ -255,4 +255,4 @@
"no-bitwise": 2, // disallow use of bitwise operators (off by default)
"no-plusplus": [2, { allowForLoopAfterthoughts: true }] // disallow use of unary operators, ++ and -- (off by default)
}
}
}
18 changes: 5 additions & 13 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,22 +1,14 @@
# Auto detect text files and perform LF normalization
* text=auto

# Custom for Visual Studio
*.cs diff=csharp
*.sln merge=union
*.csproj merge=union
*.vbproj merge=union
*.fsproj merge=union
*.dbproj merge=union

# Standard to msysgit
*.doc diff=astextplain
*.DOC diff=astextplain
*.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
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain
18 changes: 8 additions & 10 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,11 @@ coverage
.tox

#################
## Cordova
#################

platforms/*
plugins/*

#################
## NPM Dependencies
## NPM
#################

node_modules/
npm-debug.log

#################
## Bower Components
Expand All @@ -46,7 +40,7 @@ bower_components/
## SASS Cache
#################

.sass-cache/
.sass-cache

#################
## Gh-pages
Expand All @@ -58,4 +52,8 @@ bower_components/
## Swill boilerplate
#################

build/
build/
app/templates/src/stylesheets/stylus/helpers/_functions.styl
app/templates/src/stylesheets/stylus/helpers/_mixins.styl
app/templates/src/stylesheets/sass/helpers/_functions.scss
app/templates/src/stylesheets/sass/helpers/_mixins.scss
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Accessibility Buttons
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]
### Added
-

## [0.1.0] - year-month-day
### Added
- New features.

### Changed
- Changes in existing functionality.

### Fixed
- Any bug fixes.

### Removed
- Deprecated features removed in this release.

### Deprecated
- For once-stable features removed in upcoming releases.

### Security
- To invite users to upgrade in case of vulnerabilities.
Loading

0 comments on commit cb9fbc4

Please sign in to comment.