diff --git a/README.md b/README.md index a0f3f15a915..e57403382f0 100644 --- a/README.md +++ b/README.md @@ -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 ------------ diff --git a/lib/tslint.d.ts b/lib/tslint.d.ts index f5b00d99060..27341b18ec6 100644 --- a/lib/tslint.d.ts +++ b/lib/tslint.d.ts @@ -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); diff --git a/test/ruleDisableEnableTests.ts b/test/ruleDisableEnableTests.ts index a9e5d19b58d..2fbb9ac80ef 100644 --- a/test/ruleDisableEnableTests.ts +++ b/test/ruleDisableEnableTests.ts @@ -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 = {