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

@recore/config

Package Overview
Dependencies
Maintainers
6
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@recore/config - npm Package Compare versions

Comparing version 1.0.1 to 1.1.0

6

package.json
{
"name": "@recore/config",
"version": "1.0.1",
"version": "1.1.0",
"description": "TSLint/TSconfig for @recore projects",

@@ -12,3 +12,3 @@ "files": [

"tslint-config-prettier": "^1.17",
"tslint-plugin-prettier": "^1.3",
"tslint-plugin-prettier": "^2.0",
"tslint-react": "^3.6"

@@ -27,2 +27,2 @@ },

}
}
}

@@ -29,3 +29,7 @@ {

"sourceMap": true,
// Disallow inconsistently-cased references to the same file.
"forceConsistentCasingInFileNames": true,
// Allow json import
"resolveJsonModule": true,
}
}
}
{
"defaultSeverity": "error",
"extends": ["tslint:latest", "tslint-react", "tslint-plugin-prettier", "tslint-config-prettier"],
"jsRules": {},
"extends": ["tslint:latest", "tslint-react", "tslint-config-prettier"],
"linterOptions": {
"exclude": ["**/*.js", "**/*.jsx"]
},
"rules": {
"jsx-no-multiline-js": false,
"jsx-boolean-value": false,
"jsx-no-bind": true,
"jsx-no-lambda": false,
"jsx-no-string-ref": true,
"no-implicit-dependencies": false,
"no-submodule-imports": false,
"prefer-conditional-expression": false,
"interface-over-type-literal": false,
"triple-equals": false,
"quotemark": [true, "single", "jsx-double"],
"interface-name": false,
"object-literal-sort-keys": false,
"member-access": [true, "no-public"],
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore"],
"variable-name": [true, "ban-keywords", "check-format", "allow-leading-underscore", "allow-pascal-case"],
"member-ordering": [false, { "order": "statics-first" }],
"ordered-imports": [
true,
{
"grouped-imports": true,
"import-sources-order": "any",
"named-imports-order": "any"
}
],
"prefer-for-of": false,
"no-namespace": false,
"no-parameter-reassignment": true,
"ban-comma-operator": true,
"function-constructor": true,
"label-position": true,
"no-arg": true,
"no-conditional-assignment": true,
"no-construct": true,
"no-console": false,
"no-debugger": false,
"no-duplicate-super": true,
"no-duplicate-switch-case": true,
"no-empty": [true, "allow-empty-functions"],
"no-object-literal-type-assertion": true,
"no-return-await": true,
"no-shadowed-variable": true,
"no-sparse-arrays": true,
"no-this-assignment": [true, { "allow-destructuring": true }],
"no-empty": [true, "allow-empty-functions"],
"no-unsafe-finally": true,
"no-var-keyword": true,
"prefer-object-spread": true,
"radix": false,
"triple-equals": [true, "allow-null-check", "allow-undefined-check"],
"unnecessary-constructor": true,
"use-isnan": true,
"max-classes-per-file": false,
"no-duplicate-imports": true,
"no-require-imports": true,
"prefer-const": true,
"class-name": true,
"encoding": true,
"interface-name": false,
"interface-over-type-literal": false,
"no-angle-bracket-type-assertion": true,
"no-reference-import": true,
"no-unnecessary-initializer": true,
"one-variable-per-declaration": [true, "ignore-for-loop"],
"ordered-imports": false,
"prefer-template": [true, "allow-single-concat"],
"return-undefined": true,
"unnecessary-bind": true,
"prettier": true
},
"rulesDirectory": []
"rulesDirectory": ["tslint-plugin-prettier"]
}
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