New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@byuhbll/tslint-config

Package Overview
Dependencies
Maintainers
2
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@byuhbll/tslint-config - npm Package Compare versions

Comparing version 2.0.0 to 3.0.0-dev.0

58

index.js
module.exports = {
extends: ['tslint-config-airbnb', 'tslint-config-prettier'],
extends: ['tslint:recommended', 'tslint-config-airbnb', 'tslint-config-prettier'],
rules: {
indent: [true, 'space'],
'ter-indent': false,
'import-name': false,
'ter-arrow-parens': false,
'max-line-length': false,
'ter-max-len': false,
'function-name': [
true,
{
'method-regex': '^[a-z][\\w\\d]+$',
'private-method-regex': '^[a-z_][\\w\\d]+$',
'protected-method-regex': '^[a-z_][\\w\\d]+$',
'static-method-regex': '^[a-z][\\w\\d]+$',
'function-regex': '^[a-z][\\w\\d]+$',
},
],
'variable-name': [
true,
'check-format',
'allow-leading-underscore',
'allow-trailing-underscore',
'allow-pascal-case',
],
'trailing-comma': [
true,
{
multiline: 'ignore', // tslint has no way of specifying no trailing comma with rest spread in function defs
singleline: 'never',
},
],
'space-before-function-paren': [
true,
{
anonymous: 'never',
named: 'never',
},
],
'array-type': false,
'curly': false,
'forin': false,
'function-name': false,
'interface-name': false,
'interface-over-type-literal': false,
'max-classes-per-file': false,
'member-access': false,
'member-ordering': false,
'no-bitwise': false,
'no-conditional-assignment': false,
'no-console': false,
'no-empty-interface': false,
'no-empty': false,
'no-this-assignment': false,
'object-literal-sort-keys': false,
'only-arrow-functions': false,
'ordered-imports': false,
'variable-name': false
},
};
{
"name": "@byuhbll/tslint-config",
"version": "2.0.0",
"description": "Standard TSLint config for HBLL JavaScript/Typescript projects.",
"main": "index.js",
"scripts": {},
"repository": "bitbucket:byuhbll/tslint-config",
"author": "BYU HBLL",
"license": "BSD-3-Clause",
"homepage": "https://bitbucket.org/byuhbll/tslint-config#readme",
"dependencies": {
"tslint-config-airbnb": "^5.1.2",
"tslint-config-prettier": "^1.1.0"
},
"peerDependencies": {
"tslint": ">=5.4.3",
"tsutils": "1.6.0"
}
"name": "@byuhbll/tslint-config",
"version": "3.0.0-dev.0",
"description": "Standard TSLint config for HBLL JavaScript/Typescript projects.",
"main": "index.js",
"scripts": {},
"repository": "bitbucket:byuhbll/tslint-config",
"author": "BYU HBLL",
"license": "BSD-3-Clause",
"homepage": "https://bitbucket.org/byuhbll/tslint-config#readme",
"dependencies": {
"tslint-config-prettier": "^1.16.0",
"tslint-config-airbnb": "^5.11.1"
},
"peerDependencies": {
"tslint": "^5.11.0"
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc