mirror of
https://github.com/Microsoft/vscode
synced 2024-11-05 18:29:38 +00:00
bbe7b54cf4
These tests are not actively being run or maintained. Removing them for now
186 lines
5.2 KiB
JavaScript
186 lines
5.2 KiB
JavaScript
/*---------------------------------------------------------------------------------------------
|
|
* 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
|
|
*/
|
|
|
|
const { readFileSync } = require('fs');
|
|
const { join } = require('path');
|
|
|
|
module.exports.all = [
|
|
'*',
|
|
'build/**/*',
|
|
'extensions/**/*',
|
|
'scripts/**/*',
|
|
'src/**/*',
|
|
'test/**/*',
|
|
'!out*/**',
|
|
'!test/**/out/**',
|
|
'!**/node_modules/**',
|
|
];
|
|
|
|
module.exports.unicodeFilter = [
|
|
'**',
|
|
|
|
'!**/ThirdPartyNotices.txt',
|
|
'!**/LICENSE.{txt,rtf}',
|
|
'!LICENSES.chromium.html',
|
|
'!**/LICENSE',
|
|
|
|
'!**/*.{dll,exe,png,bmp,jpg,scpt,cur,ttf,woff,eot,template,ico,icns,opus}',
|
|
'!**/test/**',
|
|
'!**/*.test.ts',
|
|
'!**/*.{d.ts,json,md}',
|
|
|
|
'!build/win32/**',
|
|
'!extensions/markdown-language-features/notebook-out/*.js',
|
|
'!extensions/markdown-math/notebook-out/**',
|
|
'!extensions/notebook-renderers/renderer-out/**',
|
|
'!extensions/php-language-features/src/features/phpGlobalFunctions.ts',
|
|
'!extensions/typescript-language-features/test-workspace/**',
|
|
'!extensions/vscode-api-tests/testWorkspace/**',
|
|
'!extensions/vscode-api-tests/testWorkspace2/**',
|
|
'!extensions/**/dist/**',
|
|
'!extensions/**/out/**',
|
|
'!extensions/**/snippets/**',
|
|
'!extensions/**/colorize-fixtures/**',
|
|
|
|
'!src/vs/base/browser/dompurify/**',
|
|
'!src/vs/workbench/services/keybinding/browser/keyboardLayouts/**',
|
|
];
|
|
|
|
module.exports.indentationFilter = [
|
|
'**',
|
|
|
|
// except specific files
|
|
'!**/ThirdPartyNotices.txt',
|
|
'!**/LICENSE.{txt,rtf}',
|
|
'!LICENSES.chromium.html',
|
|
'!**/LICENSE',
|
|
'!src/vs/loader.js',
|
|
'!src/vs/base/browser/dompurify/*',
|
|
'!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',
|
|
'!build/ext.js',
|
|
|
|
// except specific folders
|
|
'!test/automation/out/**',
|
|
'!test/monaco/out/**',
|
|
'!test/smoke/out/**',
|
|
'!extensions/typescript-language-features/test-workspace/**',
|
|
'!extensions/markdown-math/notebook-out/**',
|
|
'!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,opus,admx,adml}',
|
|
'!build/{lib,download,linux,darwin}/**/*.js',
|
|
'!build/**/*.sh',
|
|
'!build/azure-pipelines/**/*.js',
|
|
'!build/azure-pipelines/**/*.config',
|
|
'!**/Dockerfile',
|
|
'!**/Dockerfile.*',
|
|
'!**/*.Dockerfile',
|
|
'!**/*.dockerfile',
|
|
|
|
// except for built files
|
|
'!extensions/markdown-language-features/media/*.js',
|
|
'!extensions/markdown-language-features/notebook-out/*.js',
|
|
'!extensions/markdown-math/notebook-out/*.js',
|
|
'!extensions/notebook-renderers/renderer-out/*.js',
|
|
'!extensions/simple-browser/media/*.js',
|
|
];
|
|
|
|
module.exports.copyrightFilter = [
|
|
'**',
|
|
'!**/*.desktop',
|
|
'!**/*.json',
|
|
'!**/*.html',
|
|
'!**/*.template',
|
|
'!**/*.md',
|
|
'!**/*.bat',
|
|
'!**/*.cmd',
|
|
'!**/*.ico',
|
|
'!**/*.opus',
|
|
'!**/*.icns',
|
|
'!**/*.xml',
|
|
'!**/*.sh',
|
|
'!**/*.zsh',
|
|
'!**/*.txt',
|
|
'!**/*.xpm',
|
|
'!**/*.opts',
|
|
'!**/*.disabled',
|
|
'!**/*.code-workspace',
|
|
'!**/*.js.map',
|
|
'!build/**/*.init',
|
|
'!build/linux/libcxx-fetcher.*',
|
|
'!resources/linux/snap/snapcraft.yaml',
|
|
'!resources/win32/bin/code.js',
|
|
'!resources/completions/**',
|
|
'!extensions/configuration-editing/build/inline-allOf.ts',
|
|
'!extensions/markdown-language-features/media/highlight.css',
|
|
'!extensions/markdown-math/notebook-out/**',
|
|
'!extensions/html-language-features/server/src/modes/typescript/*',
|
|
'!extensions/*/server/bin/*',
|
|
'!src/vs/editor/test/node/classification/typescript-test.ts',
|
|
];
|
|
|
|
module.exports.tsFormattingFilter = [
|
|
'src/**/*.ts',
|
|
'test/**/*.ts',
|
|
'extensions/**/*.ts',
|
|
'!src/vs/*/**/*.d.ts',
|
|
'!src/typings/**/*.d.ts',
|
|
'!extensions/**/*.d.ts',
|
|
'!**/fixtures/**',
|
|
'!**/typings/**',
|
|
'!**/node_modules/**',
|
|
'!extensions/**/colorize-fixtures/**',
|
|
'!extensions/vscode-api-tests/testWorkspace/**',
|
|
'!extensions/vscode-api-tests/testWorkspace2/**',
|
|
'!extensions/**/*.test.ts',
|
|
'!extensions/html-language-features/server/lib/jquery.d.ts',
|
|
];
|
|
|
|
module.exports.eslintFilter = [
|
|
'**/*.js',
|
|
'**/*.ts',
|
|
...readFileSync(join(__dirname, '../.eslintignore'))
|
|
.toString().split(/\r\n|\n/)
|
|
.filter(line => !line.startsWith('#'))
|
|
.filter(line => !!line)
|
|
.map(line => `!${line}`)
|
|
];
|