Best JavaScript code snippet using best
check-license-headers.js
Source: check-license-headers.js
1/*2 * Copyright (c) 2018, salesforce.com, inc.3 * All rights reserved.4 * SPDX-License-Identifier: MIT5 * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT6 */7// Borrowed from https://github.com/facebook/jest8/**9 * Copyright (c) 2014-present, Facebook, Inc. All rights reserved.10 *11 * This source code is licensed under the MIT license found in the12 * LICENSE file in the root directory of this source tree.13 */14'use strict';15const fs = require('fs');16const { execSync } = require('child_process');17const { isBinaryFileSync } = require('isbinaryfile');18const getFileContents = (path) => fs.readFileSync(path, { encoding: 'utf-8' });19const isDirectory = (path) => fs.lstatSync(path).isDirectory();20const createRegExp = (pattern) => new RegExp(pattern);21const IGNORED_EXTENSIONS = [22 'lock',23 'patch',24 'exe',25 'bin',26 'cfg',27 'config',28 'conf',29 // 'html', // might have LWC components we want the header on30 'md',31 'markdown',32 'opam',33 'osm',34 'descr',35 'rst',36 'json',37 'key',38 'ini',39 'plist',40 'snap',41 'svg',42 'txt',43 'xcodeproj',44 'xcscheme',45 'xml',46 'yaml',47 'yml',48 'textile',49 'tsv',50 'csv',51 'pem',52 'csr',53 'der',54 'crt',55 'cert',56 'cer',57 'p7b',58 'iml',59 'org',60 'podspec',61 'modulemap',62 'pch',63 'lproj',64 'xcworkspace',65 'storyboard',66 'tvml',67 'xib',68 'pbxproj',69 'xcworkspacedata',70 'xccheckout',71 'xcsettings',72 'strings',73 'ipynb',74 'htm',75 'toml',76].map((extension) => createRegExp(`.${extension}$`));77const GENERIC_IGNORED_PATTERNS = [78 '(^|/)\\.[^/]+(/|$)',79 //'third[_\\-. ]party/', // to be on the safe side80 '^node[_\\-. ]modules/',81 'gradlew\\.bat$',82 'gradlew$',83 'gradle/wrapper/',84 '.idea/',85 '__init__\\.py$',86 '^Setup.hs$',87 '^(readme|README|Readme)\\..*$',88 'Cargo\\.toml$',89 '^Cartfile.*$',90 '^.*\\.xcodeproj/$',91 '^.*\\.xcworkspace/$',92 '^.*\\.lproj/$',93 '^.*\\.bundle/$',94 '^MANIFEST\\.in$',95].map(createRegExp);96const CUSTOM_IGNORED_PATTERNS = [97 // add anything repo specific here98 'babel.config.js',99 '/fixtures/',100 '/integration-tests/src/(.(?!.*.spec.js$))*$',101 '/integration-karma/test/.*$',102].map(createRegExp);103const IGNORED_PATTERNS = [104 ...IGNORED_EXTENSIONS,105 ...GENERIC_IGNORED_PATTERNS,106 ...CUSTOM_IGNORED_PATTERNS,107];108const INCLUDED_PATTERNS = [109 // Any file with an extension110 /\.[^/]+$/,111];112const COPYRIGHT_HEADER_RE = /Copyright (\(c\))? [0-9]{4}, (s|S)alesforce.com, inc./;113function needsCopyrightHeader(file) {114 const contents = getFileContents(file);115 return contents.trim().length > 0 && !COPYRIGHT_HEADER_RE.test(contents);116}117function check() {118 const allFiles = execSync('git ls-files', { encoding: 'utf-8' }).trim().split('\n');119 const invalidFiles = allFiles.filter(120 (file) =>121 INCLUDED_PATTERNS.some((pattern) => pattern.test(file)) &&122 !IGNORED_PATTERNS.some((pattern) => pattern.test(file)) &&123 !isDirectory(file) &&124 !isBinaryFileSync(file) &&125 needsCopyrightHeader(file)126 );127 if (invalidFiles.length > 0) {128 console.log(`Salesforce copyright header check failed for the following files:129 ${invalidFiles.join('\n ')}130Please include the header or add an exception for the file in \`scripts/checkCopyrightHeaders.js\``);131 process.exit(1);132 }133}...
checkLicenseHeaders.js
Source: checkLicenseHeaders.js
1/*2 * Copyright (c) 2018, salesforce.com, inc.3 * All rights reserved.4 * SPDX-License-Identifier: MIT5 * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT6 */7// Borrowed from https://github.com/facebook/jest8/**9 * Copyright (c) 2014-present, Facebook, Inc. All rights reserved.10 *11 * This source code is licensed under the MIT license found in the12 * LICENSE file in the root directory of this source tree.13 */14'use strict';15const fs = require('fs');16const {execSync} = require('child_process');17const {isBinaryFileSync} = require('isbinaryfile');18const getFileContents = path => fs.readFileSync(path, {encoding: 'utf-8'});19const isDirectory = path => fs.lstatSync(path).isDirectory();20const createRegExp = pattern => new RegExp(pattern);21const IGNORED_EXTENSIONS = [22 'lock',23 'patch',24 'exe',25 'bin',26 'cfg',27 'config',28 'conf',29 // 'html', // might have LWC components we want the header on30 'md',31 'markdown',32 'opam',33 'osm',34 'descr',35 'rst',36 'json',37 'key',38 'ini',39 'plist',40 'snap',41 'svg',42 'txt',43 'xcodeproj',44 'xcscheme',45 'xml',46 'yaml',47 'yml',48 'textile',49 'tsv',50 'csv',51 'pem',52 'csr',53 'der',54 'crt',55 'cert',56 'cer',57 'p7b',58 'iml',59 'org',60 'podspec',61 'modulemap',62 'pch',63 'lproj',64 'xcworkspace',65 'storyboard',66 'tvml',67 'xib',68 'pbxproj',69 'xcworkspacedata',70 'xccheckout',71 'xcsettings',72 'strings',73 'ipynb',74 'htm',75 'toml',76].map(extension => createRegExp(`\.${extension}$`));77const GENERIC_IGNORED_PATTERNS = [78 '(^|/)\\.[^/]+(/|$)',79 //'third[_\\-. ]party/', // to be on the safe side80 '^node[_\\-. ]modules/',81 'gradlew\\.bat$',82 'gradlew$',83 'gradle/wrapper/',84 '.idea/',85 '__init__\\.py$',86 '^Setup.hs$',87 '^(readme|README|Readme)\\..*$',88 'Cargo\\.toml$',89 '^Cartfile.*$',90 '^.*\\.xcodeproj/$',91 '^.*\\.xcworkspace/$',92 '^.*\\.lproj/$',93 '^.*\\.bundle/$',94 '^MANIFEST\\.in$',95].map(createRegExp);96const CUSTOM_IGNORED_PATTERNS = [97 // add anything repo specific here98].map(createRegExp);99const IGNORED_PATTERNS = [100 ...IGNORED_EXTENSIONS,101 ...GENERIC_IGNORED_PATTERNS,102 ...CUSTOM_IGNORED_PATTERNS,103];104const INCLUDED_PATTERNS = [105 // Any file with an extension106 /\.[^/]+$/,107];108const COPYRIGHT_HEADER_RE = /Copyright (\(c\))? [0-9]{4}, (s|S)alesforce.com, inc./;109function needsCopyrightHeader(file) {110 const contents = getFileContents(file);111 return contents.trim().length > 0 && !COPYRIGHT_HEADER_RE.test(contents);112}113function check() {114 const allFiles = execSync('git ls-files', {encoding: 'utf-8'})115 .trim()116 .split('\n');117 const invalidFiles = allFiles.filter(118 file =>119 INCLUDED_PATTERNS.some(pattern => pattern.test(file)) &&120 !IGNORED_PATTERNS.some(pattern => pattern.test(file)) &&121 !isDirectory(file) &&122 !isBinaryFileSync(file) &&123 needsCopyrightHeader(file)124 );125 if (invalidFiles.length > 0) {126 console.log(`Salesforce copyright header check failed for the following files:127 ${invalidFiles.join('\n ')}128Please include the header or blacklist the files in \`scripts/checkCopyrightHeaders.js\``);129 process.exit(1);130 }131}...
checkCopyrightHeaders.js
Source: checkCopyrightHeaders.js
1/**2 * Copyright (c) 2014-present, Facebook, Inc. All rights reserved.3 *4 * This source code is licensed under the MIT license found in the5 * LICENSE file in the root directory of this source tree.6 */7'use strict';8const fs = require('fs');9const {execSync} = require('child_process');10const isbinaryfile = require('isbinaryfile');11const getFileContents = path => fs.readFileSync(path, {encoding: 'utf-8'});12const isDirectory = path => fs.lstatSync(path).isDirectory();13const createRegExp = pattern => new RegExp(pattern);14// Important: this patterns must be in sync with internal Facebook tools15const GENERIC_IGNORED_EXTENSIONS = [16 'lock',17 'patch',18 'exe',19 'bin',20 'cfg',21 'config',22 'conf',23 'html',24 'md',25 'markdown',26 'opam',27 'osm',28 'descr',29 'rst',30 'json',31 'key',32 'ini',33 'plist',34 'snap',35 'svg',36 'txt',37 'xcodeproj',38 'xcscheme',39 'xml',40 'yaml',41 'yml',42 'textile',43 'tsv',44 'csv',45 'pem',46 'csr',47 'der',48 'crt',49 'cert',50 'cer',51 'p7b',52 'iml',53 'org',54 'podspec',55 'modulemap',56 'pch',57 'lproj',58 'xcworkspace',59 'storyboard',60 'tvml',61 'xib',62 'pbxproj',63 'xcworkspacedata',64 'xccheckout',65 'xcsettings',66 'strings',67 'ipynb',68 'htm',69 'toml',70].map(extension => createRegExp(`\.${extension}$`));71const GENERIC_IGNORED_PATTERNS = [72 '(^|/)\\.[^/]+(/|$)',73 'third[_\\-. ]party/',74 '^node[_\\-. ]modules/',75 'gradlew\\.bat$',76 'gradlew$',77 'gradle/wrapper/',78 '.idea/',79 '__init__\\.py$',80 '^Setup.hs$',81 '^(readme|README|Readme)\\..*$',82 'Cargo\\.toml$',83 '^Cartfile.*$',84 '^.*\\.xcodeproj/$',85 '^.*\\.xcworkspace/$',86 '^.*\\.lproj/$',87 '^.*\\.bundle/$',88 '^MANIFEST\\.in$',89].map(createRegExp);90const CUSTOM_IGNORED_PATTERNS = [91 '\\.(example|map)$',92 '^examples/.*',93 '^flow-typed/.*',94 '^packages/expect/src/jasmineUtils\\.js$',95 '^packages/jest-config/src/vendor/jsonlint\\.js$',96].map(createRegExp);97const IGNORED_PATTERNS = [98 ...GENERIC_IGNORED_EXTENSIONS,99 ...GENERIC_IGNORED_PATTERNS,100 ...CUSTOM_IGNORED_PATTERNS,101];102const INCLUDED_PATTERNS = [103 // Any file with an extension104 /\.[^/]+$/,105];106const COPYRIGHT_HEADER_RE = /(Facebook, Inc(.|,)? and its affiliates)|([0-9]{4}-present(.|,)? Facebook)|([0-9]{4}(.|,)? Facebook)/;107function needsCopyrightHeader(file) {108 const contents = getFileContents(file);109 return contents.trim().length > 0 && !COPYRIGHT_HEADER_RE.test(contents);110}111function check() {112 const allFiles = execSync('git ls-files', {encoding: 'utf-8'})113 .trim()114 .split('\n');115 const invalidFiles = allFiles.filter(116 file =>117 INCLUDED_PATTERNS.some(pattern => pattern.test(file)) &&118 !IGNORED_PATTERNS.some(pattern => pattern.test(file)) &&119 !isDirectory(file) &&120 !isbinaryfile.sync(file) &&121 needsCopyrightHeader(file)122 );123 if (invalidFiles.length > 0) {124 console.log(`Facebook copyright header check failed for the following files:125 ${invalidFiles.join('\n ')}126Please include the header or blacklist the files in \`scripts/checkCopyrightHeaders.js\``);127 process.exit(1);128 }129}...
Using AI Code Generation
1var COPYRIGHT_HEADER_RE = /Copyright 2015/;2var COPYRIGHT_HEADER_RE = /Copyright 2015/;3var COPYRIGHT_HEADER_RE = /Copyright 2015/;4var COPYRIGHT_YEAR = 2015;5var COPYRIGHT_YEAR = 2015;6var COPYRIGHT_YEAR = 2015;7var COPYRIGHT_YEAR = 2015;8var COPYRIGHT_HEADER_RE = /Copyright 2015/;9var COPYRIGHT_HEADER_RE = /Copyright 2015/;10var COPYRIGHT_HEADER_RE = /Copyright 2015/;11var COPYRIGHT_YEAR = 2015;12var COPYRIGHT_YEAR = 2015;13var COPYRIGHT_YEAR = 2015;14var COPYRIGHT_YEAR = 2015;15var COPYRIGHT_HEADER_RE = /Copyright 2015/;16var COPYRIGHT_HEADER_RE = /Copyright 2015/;17var COPYRIGHT_HEADER_RE = /Copyright 2015/;18var COPYRIGHT_YEAR = 2015;19var COPYRIGHT_YEAR = 2015;20var COPYRIGHT_YEAR = 2015;21var COPYRIGHT_YEAR = 2015;22var COPYRIGHT_HEADER_RE = /Copyright 2015/;
Using AI Code Generation
1var fs = require('fs');2var path = require('path');3var esprima = require('esprima');4var escodegen = require('escodegen');5var COPYRIGHT_HEADER_RE = /\/\/\s*Copyright\s*\(\s*\(c\)\s*\d{4}\s*\)\s*.*\s*All\s*Rights\s*Reserved\s*\.\s*$/;6var testFile = path.join(__dirname, 'test4.js');7var fileContents = fs.readFileSync(testFile, 'utf8');8var ast = esprima.parse(fileContents, {loc: true});9console.log(COPYRIGHT_HEADER_RE.test(fileContents));10var fs = require('fs');11var path = require('path');12var esprima = require('esprima');13var escodegen = require('escodegen');14var COPYRIGHT_HEADER_RE = /\/\/\s*Copyright\s*\(\s*\(c\)\s*\d{4}\s*\)\s*.*\s*All\s*Rights\s*Reserved\s*\.\s*$/;15var testFile = path.join(__dirname, 'test5.js');16var fileContents = fs.readFileSync(testFile, 'utf8');17var ast = esprima.parse(fileContents, {loc: true});18console.log(COPYRIGHT_HEADER_RE.test(fileContents));19var fs = require('fs');20var path = require('path');21var esprima = require('esprima');22var escodegen = require('escodegen');23var COPYRIGHT_HEADER_RE = /\/\/\s*Copyright\s*\(\s*\(c\)\s*\d{4}\s*\)\s*.*\s*All\s*Rights\s*Reserved\s*\.\s*$/;24var testFile = path.join(__dirname, 'test6.js');25var fileContents = fs.readFileSync(testFile, 'utf8');26var ast = esprima.parse(fileContents, {loc: true});27console.log(COPYRIGHT_HEADER_RE.test(fileContents));
Using AI Code Generation
1var BestPracticeChecker = require('./bestPracticeChecker.js');2var test = new BestPracticeChecker();3test.checkFile('test4.js');4var BestPracticeChecker = require('./bestPracticeChecker.js');5var test = new BestPracticeChecker();6test.checkFile('test5.js');7var BestPracticeChecker = require('./bestPracticeChecker.js');8var test = new BestPracticeChecker();9test.checkFile('test6.js');10var BestPracticeChecker = require('./bestPracticeChecker.js');11var test = new BestPracticeChecker();12test.checkFile('test7.js');13var BestPracticeChecker = require('./bestPracticeChecker.js');14var test = new BestPracticeChecker();15test.checkFile('test8.js');16var BestPracticeChecker = require('./bestPracticeChecker.js');17var test = new BestPracticeChecker();18test.checkFile('test9.js');19var BestPracticeChecker = require('./bestPracticeChecker.js');20var test = new BestPracticeChecker();21test.checkFile('test10.js');22var BestPracticeChecker = require('./bestPracticeChecker.js');23var test = new BestPracticeChecker();24test.checkFile('test11.js');25var BestPracticeChecker = require('./bestPracticeChecker.js');26var test = new BestPracticeChecker();27test.checkFile('test12.js');28var BestPracticeChecker = require('./bestPracticeChecker.js');29var test = new BestPracticeChecker();30test.checkFile('test13.js');31var BestPracticeChecker = require('./bestPracticeChecker.js');
Using AI Code Generation
1var BestPractices = require('./BestPractices.js');2var fs = require('fs');3var file = fs.readFileSync('test4.js');4var result = BestPractices.COPYRIGHT_HEADER_RE.test(file);5console.log(result);6var BestPractices = require('./BestPractices.js');7var fs = require('fs');8var file = fs.readFileSync('test5.js');9var result = BestPractices.COPYRIGHT_HEADER_RE.test(file);10console.log(result);11var BestPractices = require('./BestPractices.js');12var fs = require('fs');13var file = fs.readFileSync('test6.js');14var result = BestPractices.COPYRIGHT_HEADER_RE.test(file);15console.log(result);16var BestPractices = require('./BestPractices.js');17var fs = require('fs');18var file = fs.readFileSync('test7.js');19var result = BestPractices.COPYRIGHT_HEADER_RE.test(file);20console.log(result);21var BestPractices = require('./BestPractices.js');22var fs = require('fs');23var file = fs.readFileSync('test8.js');24var result = BestPractices.COPYRIGHT_HEADER_RE.test(file);25console.log(result);
Check out the latest blogs from LambdaTest on this topic:
LambdaTest has recently received two notable awards from the leading business software directory FinancesOnline after their experts were impressed with our test platform’s capabilities in accelerating one’s development process.
The layout of a web page is one of the most important features of a web page. It can affect the traffic inflow by a significant margin. At times, a designer may come up with numerous layout ideas and sometimes he/she may struggle the entire day to come up with one. Moreover, design becomes even more important when it comes to ensuring cross browser compatibility.
Chrome is hands down the most used browsers by developers and users alike. It is the primary reason why there is such a solid chrome community and why there is a huge list of Chrome Extensions targeted at developers.
In a startup, the major strength of the people is that they are multitaskers. Be it anything, the founders and the core team wears multiple hats and takes complete responsibilities to get the ball rolling. From designing to deploying, from development to testing, everything takes place under the hawk eyes of founders and the core members.
We are in the era of the ‘Heads down’ generation. Ever wondered how much time you spend on your smartphone? Well, let us give you an estimate. With over 2.5 billion smartphone users, an average human spends approximately 2 Hours 51 minutes on their phone every day as per ComScore’s 2017 report. The number increases by an hour if we include the tab users as well!
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!