@recore/config
Advanced tools
Comparing version 1.0.1 to 1.1.0
{ | ||
"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"] | ||
} |
5369
97
+ Addedlines-and-columns@1.2.4(transitive)
+ Addedtslint-plugin-prettier@2.3.0(transitive)
- Removedtslint-plugin-prettier@1.3.0(transitive)
Updatedtslint-plugin-prettier@^2.0