2021-01-07 08:15:05 +00:00
|
|
|
/*---------------------------------------------------------------------------------------------
|
|
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Hygiene works by creating cascading subsets of all our files and
|
|
|
|
* passing them through a sequence of checks. Here are the current subsets,
|
|
|
|
* named according to the checks performed on them. Each subset contains
|
|
|
|
* the following one, as described in mathematical notation:
|
|
|
|
*
|
|
|
|
* all ⊃ eol ⊇ indentation ⊃ copyright ⊃ typescript
|
|
|
|
*/
|
|
|
|
|
|
|
|
module.exports.all = [
|
|
|
|
'*',
|
|
|
|
'build/**/*',
|
|
|
|
'extensions/**/*',
|
|
|
|
'scripts/**/*',
|
|
|
|
'src/**/*',
|
|
|
|
'test/**/*',
|
|
|
|
'!out*/**',
|
|
|
|
'!test/**/out/**',
|
|
|
|
'!**/node_modules/**',
|
|
|
|
];
|
|
|
|
|
|
|
|
module.exports.indentationFilter = [
|
|
|
|
'**',
|
|
|
|
|
|
|
|
// except specific files
|
|
|
|
'!**/ThirdPartyNotices.txt',
|
|
|
|
'!**/LICENSE.{txt,rtf}',
|
|
|
|
'!LICENSES.chromium.html',
|
|
|
|
'!**/LICENSE',
|
|
|
|
'!src/vs/nls.js',
|
|
|
|
'!src/vs/nls.build.js',
|
|
|
|
'!src/vs/css.js',
|
|
|
|
'!src/vs/css.build.js',
|
|
|
|
'!src/vs/loader.js',
|
|
|
|
'!src/vs/base/common/insane/insane.js',
|
|
|
|
'!src/vs/base/common/marked/marked.js',
|
|
|
|
'!src/vs/base/common/semver/semver.js',
|
|
|
|
'!src/vs/base/node/terminateProcess.sh',
|
|
|
|
'!src/vs/base/node/cpuUsage.sh',
|
|
|
|
'!test/unit/assert.js',
|
|
|
|
'!resources/linux/snap/electron-launch',
|
|
|
|
|
|
|
|
// except specific folders
|
|
|
|
'!test/automation/out/**',
|
|
|
|
'!test/monaco/out/**',
|
|
|
|
'!test/smoke/out/**',
|
|
|
|
'!extensions/typescript-language-features/test-workspace/**',
|
|
|
|
'!extensions/vscode-api-tests/testWorkspace/**',
|
|
|
|
'!extensions/vscode-api-tests/testWorkspace2/**',
|
|
|
|
'!build/monaco/**',
|
|
|
|
'!build/win32/**',
|
|
|
|
|
|
|
|
// except multiple specific files
|
|
|
|
'!**/package.json',
|
|
|
|
'!**/yarn.lock',
|
|
|
|
'!**/yarn-error.log',
|
|
|
|
|
|
|
|
// except multiple specific folders
|
|
|
|
'!**/codicon/**',
|
|
|
|
'!**/fixtures/**',
|
|
|
|
'!**/lib/**',
|
|
|
|
'!extensions/**/dist/**',
|
|
|
|
'!extensions/**/out/**',
|
|
|
|
'!extensions/**/snippets/**',
|
|
|
|
'!extensions/**/syntaxes/**',
|
|
|
|
'!extensions/**/themes/**',
|
|
|
|
'!extensions/**/colorize-fixtures/**',
|
|
|
|
|
|
|
|
// except specific file types
|
|
|
|
'!src/vs/*/**/*.d.ts',
|
|
|
|
'!src/typings/**/*.d.ts',
|
|
|
|
'!extensions/**/*.d.ts',
|
|
|
|
'!**/*.{svg,exe,png,bmp,jpg,scpt,bat,cmd,cur,ttf,woff,eot,md,ps1,template,yaml,yml,d.ts.recipe,ico,icns,plist}',
|
|
|
|
'!build/{lib,download,darwin}/**/*.js',
|
|
|
|
'!build/**/*.sh',
|
|
|
|
'!build/azure-pipelines/**/*.js',
|
|
|
|
'!build/azure-pipelines/**/*.config',
|
|
|
|
'!**/Dockerfile',
|
|
|
|
'!**/Dockerfile.*',
|
|
|
|
'!**/*.Dockerfile',
|
|
|
|
'!**/*.dockerfile',
|
|
|
|
'!extensions/markdown-language-features/media/*.js',
|
|
|
|
'!extensions/simple-browser/media/*.js',
|
|
|
|
];
|
|
|
|
|
|
|
|
module.exports.copyrightFilter = [
|
|
|
|
'**',
|
|
|
|
'!**/*.desktop',
|
|
|
|
'!**/*.json',
|
|
|
|
'!**/*.html',
|
|
|
|
'!**/*.template',
|
|
|
|
'!**/*.md',
|
|
|
|
'!**/*.bat',
|
|
|
|
'!**/*.cmd',
|
|
|
|
'!**/*.ico',
|
|
|
|
'!**/*.icns',
|
|
|
|
'!**/*.xml',
|
|
|
|
'!**/*.sh',
|
|
|
|
'!**/*.txt',
|
|
|
|
'!**/*.xpm',
|
|
|
|
'!**/*.opts',
|
|
|
|
'!**/*.disabled',
|
|
|
|
'!**/*.code-workspace',
|
|
|
|
'!**/*.js.map',
|
|
|
|
'!build/**/*.init',
|
|
|
|
'!resources/linux/snap/snapcraft.yaml',
|
|
|
|
'!resources/win32/bin/code.js',
|
|
|
|
'!resources/web/code-web.js',
|
|
|
|
'!resources/completions/**',
|
|
|
|
'!extensions/configuration-editing/build/inline-allOf.ts',
|
|
|
|
'!extensions/markdown-language-features/media/highlight.css',
|
|
|
|
'!extensions/html-language-features/server/src/modes/typescript/*',
|
|
|
|
'!extensions/*/server/bin/*',
|
|
|
|
'!src/vs/editor/test/node/classification/typescript-test.ts',
|
|
|
|
];
|
|
|
|
|
|
|
|
module.exports.jsHygieneFilter = [
|
|
|
|
'src/**/*.js',
|
|
|
|
'build/gulpfile.*.js',
|
|
|
|
'!src/vs/loader.js',
|
|
|
|
'!src/vs/css.js',
|
|
|
|
'!src/vs/nls.js',
|
|
|
|
'!src/vs/css.build.js',
|
|
|
|
'!src/vs/nls.build.js',
|
|
|
|
'!src/**/insane.js',
|
|
|
|
'!src/**/marked.js',
|
|
|
|
'!src/**/semver.js',
|
|
|
|
'!**/test/**',
|
|
|
|
];
|
|
|
|
|
|
|
|
module.exports.tsHygieneFilter = [
|
|
|
|
'src/**/*.ts',
|
|
|
|
'test/**/*.ts',
|
|
|
|
'extensions/**/*.ts',
|
|
|
|
'!src/vs/*/**/*.d.ts',
|
|
|
|
'!src/typings/**/*.d.ts',
|
|
|
|
'!extensions/**/*.d.ts',
|
|
|
|
'!**/fixtures/**',
|
|
|
|
'!**/typings/**',
|
|
|
|
'!**/node_modules/**',
|
2021-01-19 11:11:07 +00:00
|
|
|
'!extensions/**/colorize-fixtures/**',
|
2021-01-07 08:15:05 +00:00
|
|
|
'!extensions/vscode-api-tests/testWorkspace/**',
|
|
|
|
'!extensions/vscode-api-tests/testWorkspace2/**',
|
|
|
|
'!extensions/**/*.test.ts',
|
|
|
|
'!extensions/html-language-features/server/lib/jquery.d.ts',
|
|
|
|
];
|