refactor(casing): Force consistent casing (#25)

Force consistent casing across code. This will allow people to import the interfaces from `Interfaces.ts` and also use `forceConsistentCasingInFileNames`
This commit is contained in:
Nico Jansen 2017-11-30 23:55:52 +01:00 коммит произвёл Bryan MacFarlane
Родитель db540998e1
Коммит 1581035339
5 изменённых файлов: 6 добавлений и 5 удалений

Просмотреть файл

@ -1,7 +1,7 @@
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
import ifm = require('../interfaces');
import ifm = require('../Interfaces');
export class BasicCredentialHandler implements ifm.IRequestHandler {
username: string;

Просмотреть файл

@ -1,7 +1,7 @@
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
import ifm = require('../interfaces');
import ifm = require('../Interfaces');
export class BearerCredentialHandler implements ifm.IRequestHandler {
token: string;

Просмотреть файл

@ -1,7 +1,7 @@
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
import ifm = require('../interfaces');
import ifm = require('../Interfaces');
import http = require("http");
import https = require("https");

Просмотреть файл

@ -1,7 +1,7 @@
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
import ifm = require('../interfaces');
import ifm = require('../Interfaces');
export class PersonalAccessTokenCredentialHandler implements ifm.IRequestHandler {
token: string;

Просмотреть файл

@ -5,7 +5,8 @@
"moduleResolution": "node",
"typeRoots": [ "node_modules/@types" ],
"declaration": true,
"outDir": "_build"
"outDir": "_build",
"forceConsistentCasingInFileNames": true
},
"files": [
"lib/Index.ts",