public getOptions()

in jshint-server/src/server.ts [127:134]


	public getOptions(fsPath: string): any {
		let result = this.optionsCache[fsPath];
		if (!result) {
			result = this.readOptions(fsPath);
			this.optionsCache[fsPath] = result;
		}
		return result;
	}