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

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
- Fix semantic merge conflict in ruleDisableEnableTests.ts
- Remove redunant "next" content from README
- Small update to tslint.d.ts
  • Loading branch information
adidahiya committed Aug 21, 2015
1 parent 7324496 commit ad5e4c3
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 10 deletions.
8 changes: 0 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,6 @@ TSLint

A linter for the TypeScript language.

"next" distribution
-------------------

The `next` [branch of the TSLint repo](https://github.com/palantir/tslint/tree/next) tracks the latest TypeScript
compiler and allows you to lint TS code that uses the latest features of the language. Releases from this branch
are published to npm with the `next` dist-tag, so you can get the latest dev version of TSLint via
`npm install tslint@next`.

Installation
------------

Expand Down
2 changes: 1 addition & 1 deletion lib/tslint.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -252,10 +252,10 @@ declare module Lint {
rulesDirectory: string;
}
class Linter {
static VERSION: string;
private fileName;
private source;
private options;
static VERSION: string;
constructor(fileName: string, source: string, options: ILinterOptions);
lint(): LintResult;
private getRelativePath(directory);
Expand Down
2 changes: 1 addition & 1 deletion test/ruleDisableEnableTests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ describe("Enable and Disable Rules", () => {
"quotemark": [true, "double"]
}};

const relativePath = join("test", "files", "rules/enabledisable.test.ts");
const relativePath = join("test", "files", "enabledisable.test.ts");
const source = readFileSync(relativePath, "utf8");

const options: Lint.ILinterOptions = {
Expand Down

0 comments on commit ad5e4c3

Please sign in to comment.