Skip to content

Commit

Permalink
Update README, add tslint.json
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsonk committed Dec 30, 2015
1 parent de23f7d commit d43d086
Show file tree
Hide file tree
Showing 2 changed files with 81 additions and 4 deletions.
21 changes: 17 additions & 4 deletions README.md
@@ -1,9 +1,22 @@
This repository contains common guidelines for writing, committing, and accepting contributions to Dojo 2 packages.
# dojo-meta

* [Contributing Guidelines](CONTRIBUTING.md)
* [Style Guide](STYLE.md)
This repository contains information regarding Dojo 2 that crosses package boundries.

# Package Statuses
# Guidelines and Style Guide

There are several documents that are relevent for contributing to Dojo 2.

* [Contributing Guidelines](CONTRIBUTING.md) - Guidelines for contributing code (or documentation) to Dojo 2
* [Style Guide](STYLE.md) - The style guide for Dojo 2.
* [tslint.json](tslint.json) - The configuration file [tslint](http://palantir.github.io/tslint/) that is used to validate Dojo 2 code against

# Packages

There are several packages that makeup the Dojo 2 platform.

## Status

The following tables contain status information for the packages:

|Package|CI Status|Code Coverage|npm |
|-------|---------|-------------|----------|
Expand Down
64 changes: 64 additions & 0 deletions tslint.json
@@ -0,0 +1,64 @@
{
"rules": {
"align": false,
"ban": [],
"class-name": true,
"comment-format": [ true, "check-space" ],
"curly": true,
"eofline": true,
"forin": false,
"ident": [ true, "tabs" ],
"interface-name": false,
"jsdoc-format": true,
"label-position": true,
"label-undefined": true,
"max-line-length": false,
"member-access": false,
"member-ordering": false,
"no-any": false,
"no-arg": true,
"no-bitwise": false,
"no-conditional-assignment": false,
"no-consecutive-blank-lines": true,
"no-console": false,
"no-construct": false,
"no-constructor-vars": true,
"no-debugger": true,
"no-duplicate-key": true,
"no-duplicate-variable": true,
"no-empty": false,
"no-eval": true,
"no-inferrable-types": false,
"no-internal-module": false,
"no-null-keyword": false,
"no-require-imports": false,
"no-shadowed-variable": false,
"no-string-literal": false,
"no-switch-case-fall-through": false,
"no-trailing-comma": true,
"no-trailing-whitespace": true,
"no-unreachable": true,
"no-unused-expression": false,
"no-unused-variable": true,
"no-use-before-declare": false,
"no-var-keyword": true,
"no-var-requires": false,
"object-literal-sort-keys": false,
"one-line": [ true, "check-open-brace", "check-whitespace" ],
"quotemark": [ true, "single", "avoid-escape" ],
"radix": true,
"semicolon": true,
"trailing-comma": true,
"triple-equals": [ true, "allow-null-check" ],
"typedef": false,
"typedef-whitespace": [ true, {
"index-signature": "nospace",
"parameter": "nospace",
"property-declaration": "nospace",
"variable-declaration": "nospace"
} ],
"use-strict": false,
"variable-name": false,
"whitespace": [ true, "check-branch", "check-decl", "check-operator", "check-module", "check-separator", "check-type", "check-typecast" ]
}
}

0 comments on commit d43d086

Please sign in to comment.