Skip to content
This repository has been archived by the owner on Jul 29, 2019. It is now read-only.

Commit

Permalink
added code-climate configs
Browse files Browse the repository at this point in the history
  • Loading branch information
mojoaxel committed Dec 5, 2016
1 parent 1e9dce1 commit d9056c1
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .codeclimate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
languages:
JavaScript: true
engines:
eslint:
enabled: true
csslint:
enabled: true
markdownlint:
enabled: true
duplication:
enabled: true
config:
languages:
javascript:
mass_threshold: 300
fixme :
enabled: true
ratings:
paths:
- "**/*.js"
- "**/*.css"
- "**/*.md"
exclude_paths:
- "dist/**/*"
- "docs/**/*"
- "examples/**/*"
3 changes: 3 additions & 0 deletions .csslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"box-sizing": false
}
6 changes: 6 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"rules": {
"complexity": [2, 50],
"max-statements": [2, 100]
}
}
6 changes: 6 additions & 0 deletions .mdlrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
// Markdown Lint Rules
// https://github.com/mivok/markdownlint/blob/master/docs/RULES.md

rules
"~MD012", // alert on multiple consecutive blank lines
"~MD013", // line length should be no more than 80 characters

0 comments on commit d9056c1

Please sign in to comment.