Skip to content

Commit

Permalink
yo phovea:update
Browse files Browse the repository at this point in the history
  • Loading branch information
sgratzl committed Jan 18, 2017
1 parent 71cab76 commit 3f4920c
Show file tree
Hide file tree
Showing 4 changed files with 98 additions and 46 deletions.
38 changes: 19 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,41 +77,41 @@
"@types/select2": "4.0.30",
"d3": "3.5.17",
"jquery.scrollto": "2.1.2",
"lineupjs": "github:Caleydo/lineupjs#master",
"lineupjs": "1.0.0",
"phovea_clue": "github:phovea/phovea_clue#v0.0.5",
"select2": "4.0.3",
"@types/jquery": "2.0.33",
"jquery": "3.1.1"
},
"devDependencies": {
"@types/jasmine": "2.5.35",
"awesome-typescript-loader": "2.2.4",
"css-loader": "0.25.0",
"extract-text-webpack-plugin": "2.0.0-beta.4",
"extract-loader": "0.0.2",
"@types/jasmine": "2.5.40",
"awesome-typescript-loader": "3.0.0-beta.18",
"css-loader": "0.26.1",
"extract-loader": "0.1.0",
"extract-text-webpack-plugin": "2.0.0-beta.5",
"file-loader": "0.9.0",
"html-loader": "0.4.4",
"imports-loader": "0.6.5",
"jasmine": "2.5.2",
"imports-loader": "0.7.0",
"jasmine": "2.5.3",
"json-loader": "0.5.4",
"karma": "1.3.0",
"karma": "1.4.0",
"karma-chrome-launcher": "2.0.0",
"karma-firefox-launcher": "1.0.0",
"karma-jasmine": "1.0.2",
"karma-junit-reporter": "1.1.0",
"karma-jasmine": "1.1.0",
"karma-junit-reporter": "2.0.0",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "1.8.0",
"karma-webpack": "2.0.1",
"mkdirp": "0.5.1",
"node-sass": "3.10.0",
"node-sass": "4.3.0",
"null-loader": "0.1.1",
"raw-loader": "0.5.1",
"sass-loader": "4.0.2",
"sass-loader": "4.1.1",
"style-loader": "0.13.1",
"tslint": "3.15.1",
"typedoc": "0.5.3",
"typescript": "2.0.6",
"tslint": "4.3.1",
"typedoc": "0.5.5",
"typescript": "2.1.5",
"url-loader": "0.5.7",
"webpack": "2.1.0-beta.26",
"webpack-dev-server": "2.1.0-beta.10"
"webpack": "2.1.0-beta.28",
"webpack-dev-server": "2.1.0-beta.12"
}
}
3 changes: 3 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
"noImplicitAny": false,
"sourceMap": true,
"moduleResolution": "node",
"jsx": "react",
"experimentalDecorators": true,
"lib": [
"dom",
"es2015"
Expand All @@ -13,6 +15,7 @@
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"tests/**/*.ts",
"index.ts",
"tsd.d.ts"
Expand Down
95 changes: 71 additions & 24 deletions tslint.json
Original file line number Diff line number Diff line change
@@ -1,76 +1,123 @@
{
"rules": {
"ban": [true, ["_", "extend"],
["_", "isNull"],
["_", "isDefined"]
"arrow-parens": true,
"ban": [
true,
[
"_",
"extend"
],
[
"_",
"isNull"
],
[
"_",
"isDefined"
]
],
"class-name": true,
"comment-format": false,
"curly": true,
"eofline": true,
"forin": true,
"indent": [true, 2],
"indent": [
true,
2
],
"interface-name": true,
"jsdoc-format": true,
"label-position": true,
"label-undefined": true,
"max-line-length": false,
"member-ordering": [false,
"member-ordering": [
false,
"public-before-private",
"static-before-instance",
"variables-before-functions"
],
"new-parens": true,
"no-arg": true,
"no-bitwise": true,
"no-console": [true,
"no-console": [
true,
"debug",
"info",
"time",
"timeEnd",
"trace"
],
"no-construct": true,
"no-constructor-vars": false,
"no-debugger": true,
"no-duplicate-key": true,
"no-duplicate-variable": true,
"no-empty": true,
"no-empty-interface": true,
"no-eval": true,
"no-reference": true,
"no-string-literal": true,
"no-string-throw": true,
"no-switch-case-fall-through": true,
"no-trailing-whitespace": true,
"no-unused-expression": true,
"no-unused-variable": true,
"no-unreachable": true,
"no-use-before-declare": true,
"no-unsafe-finally": true,
"no-var-requires": true,
"one-line": [true,
"no-var-keyword": true,
"one-line": [
true,
"check-open-brace",
"check-catch",
"check-else",
"check-whitespace"
],
"quotemark": [true, "single"],
"object-literal-shorthand": true,
"prefer-for-of": true,
"prefer-const": true,
"quotemark": [
true,
"single",
"jsx-double"
],
"radix": true,
"semicolon": true,
"triple-equals": [true, "allow-null-check"],
"typedef": [false,
"semicolon": [
true,
"always"
],
"triple-equals": [
true,
"allow-null-check"
],
"typedef": [
false,
"callSignature",
"indexSignature",
"parameter",
"propertySignature",
"variableDeclarator"
],
"typedef-whitespace": [true, ["callSignature", "noSpace"],
["catchClause", "noSpace"],
["indexSignature", "space"]
"typedef-whitespace": [
true,
[
"callSignature",
"noSpace"
],
[
"catchClause",
"noSpace"
],
[
"indexSignature",
"space"
]
],
"use-strict": [false,
"check-module",
"check-function"
"use-isnan": true,
"variable-name": [
true,
"ban-keywords",
"check-format",
"allow-leading-underscore"
],
"variable-name": false,
"whitespace": [false,
"whitespace": [
false,
"check-branch",
"check-decl",
"check-operator",
Expand Down
8 changes: 5 additions & 3 deletions typedoc.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
{
"mode": "modules",
"out": "./docs",
"out": "./build/docs",
"theme": "minimal",
"ignoreCompilerErrors": false,
"ignoreCompilerErrors": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"preserveConstEnums": true,
"stripInternal": true,
"suppressExcessPropertyErrors": true,
"suppressImplicitAnyIndexErrors": true,
"exclude": "**/*.test.ts"
"exclude": "tests/**/*.ts",
"excludePrivate": true,
"excludeExternals": true
}

0 comments on commit 3f4920c

Please sign in to comment.