Skip to content

Commit f7296da

Browse files
committed
File renames
1 parent 552f698 commit f7296da

File tree

309 files changed

+1662
-731
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

309 files changed

+1662
-731
lines changed

.eslintrc.js

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ module.exports = {
88
],
99
parser: "@typescript-eslint/parser",
1010
plugins: [
11-
"@typescript-eslint"
11+
"@typescript-eslint",
12+
"unicorn"
1213
],
1314
root: true,
1415
rules: {
@@ -24,7 +25,17 @@ module.exports = {
2425
"caughtErrorsIgnorePattern": "^_"
2526
}
2627
],
27-
"@typescript-eslint/no-namespace": "off"
28+
"@typescript-eslint/no-namespace": "off",
29+
"unicorn/filename-case": [
30+
"error",
31+
{
32+
"case": "camelCase",
33+
"ignore": [
34+
"I[A-Z].*\\.ts$",
35+
"vscode-tasks\\.d\\.ts"
36+
]
37+
}
38+
]
2839
},
2940
ignorePatterns: [
3041
"out/",

gulpfile.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
*--------------------------------------------------------------------------------------------*/
55

66
import * as gulp from 'gulp';
7-
import * as optionsSchemaGenerator from './src/tools/GenerateOptionsSchema';
8-
import * as packageDependencyUpdater from './src/tools/UpdatePackageDependencies';
7+
import * as optionsSchemaGenerator from './src/tools/generateOptionsSchema';
8+
import * as packageDependencyUpdater from './src/tools/updatePackageDependencies';
99

1010
require('./tasks/testTasks');
1111
require('./tasks/offlinePackagingTasks');

0 commit comments

Comments
 (0)