Skip to content
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
danvk committed Jul 20, 2016
1 parent a51227c commit 0c10364
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 107 deletions.
1 change: 1 addition & 0 deletions src/ruleLoader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ export function loadRules(ruleConfiguration: {[name: string]: any},
Try upgrading TSLint and/or ensuring that you have all necessary custom rules installed.
If TSLint was recently upgraded, you may have old rules configured which need to be cleaned up.
`;

throw new Error(ERROR_MESSAGE);
} else {
return rules;
Expand Down
95 changes: 0 additions & 95 deletions src/rules/quotePropsRule.ts

This file was deleted.

2 changes: 1 addition & 1 deletion src/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -119,13 +119,13 @@
"rules/noUseBeforeDeclareRule.ts",
"rules/noVarKeywordRule.ts",
"rules/noVarRequiresRule.ts",
"rules/objectLiteralKeyQuotesRule.ts",
"rules/objectLiteralSortKeysRule.ts",
"rules/oneLineRule.ts",
"rules/oneVariablePerDeclarationRule.ts",
"rules/onlyArrowFunctionsRule.ts",
"rules/orderedImportsRule.ts",
"rules/quotemarkRule.ts",
"rules/quotePropsRule.ts",
"rules/radixRule.ts",
"rules/restrictPlusOperandsRule.ts",
"rules/semicolonRule.ts",
Expand Down
5 changes: 5 additions & 0 deletions test/rules/object-literal-key-quotes/always/tslint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"rules": {
"object-literal-key-quotes": [true, "always"]
}
}
5 changes: 5 additions & 0 deletions test/rules/object-literal-key-quotes/as-needed/tslint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"rules": {
"object-literal-key-quotes": [true, "as-needed"]
}
}
5 changes: 0 additions & 5 deletions test/rules/quote-props/always/tslint.json

This file was deleted.

5 changes: 0 additions & 5 deletions test/rules/quote-props/as-needed/tslint.json

This file was deleted.

2 changes: 1 addition & 1 deletion test/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -115,13 +115,13 @@
"../src/rules/noUseBeforeDeclareRule.ts",
"../src/rules/noVarKeywordRule.ts",
"../src/rules/noVarRequiresRule.ts",
"../src/rules/objectLiteralKeyQuotesRule.ts",
"../src/rules/objectLiteralSortKeysRule.ts",
"../src/rules/oneLineRule.ts",
"../src/rules/oneVariablePerDeclarationRule.ts",
"../src/rules/onlyArrowFunctionsRule.ts",
"../src/rules/orderedImportsRule.ts",
"../src/rules/quotemarkRule.ts",
"../src/rules/quotePropsRule.ts",
"../src/rules/radixRule.ts",
"../src/rules/restrictPlusOperandsRule.ts",
"../src/rules/semicolonRule.ts",
Expand Down

0 comments on commit 0c10364

Please sign in to comment.