eslint-config-cheminfo
Advanced tools
Comparing version 1.3.2 to 1.4.0
@@ -0,1 +1,11 @@ | ||
<a name="1.4.0"></a> | ||
# [1.4.0](https://github.com/cheminfo/eslint-config/compare/v1.3.2...v1.4.0) (2016-10-14) | ||
### Features | ||
* add some new rules ([cf4db0b](https://github.com/cheminfo/eslint-config/commit/cf4db0b)) | ||
<a name="1.3.2"></a> | ||
@@ -2,0 +12,0 @@ ## [1.3.2](https://github.com/cheminfo/eslint-config/compare/v1.3.1...v1.3.2) (2016-10-12) |
10
index.js
@@ -21,2 +21,3 @@ 'use strict'; | ||
'camelcase': 'error', | ||
'comma-dangle': 'off', | ||
'comma-spacing': ['error', {after: true, before: false}], | ||
@@ -27,2 +28,3 @@ 'comma-style': 'error', | ||
'eqeqeq': ['error', 'allow-null'], | ||
'func-call-spacing': 'error', | ||
'indent': ['error', 4, {SwitchCase: 1}], | ||
@@ -32,2 +34,3 @@ 'key-spacing': 'error', | ||
'new-parens': 'error', | ||
'no-array-constructor': 'error', | ||
'no-cond-assign': 'error', | ||
@@ -46,2 +49,3 @@ 'no-console': 'error', | ||
'no-extra-boolean-cast': 'error', | ||
'no-extra-label': 'error', | ||
'no-extra-semi': 'error', | ||
@@ -52,3 +56,7 @@ 'no-func-assign': 'error', | ||
'no-label-var': 'error', | ||
'no-lone-blocks': 'error', | ||
'no-mixed-spaces-and-tabs': 'error', | ||
'no-multiple-empty-lines': ['error', {max: 2, maxEOF: 1, maxBOF: 1}], | ||
'no-new-object': 'error', | ||
'no-new-wrappers': 'error', | ||
'no-obj-calls': 'error', | ||
@@ -65,2 +73,4 @@ 'no-regex-spaces': 'error', | ||
'no-unsafe-negation': 'error', | ||
'no-unused-expressions': 'error', | ||
'no-with': 'error', | ||
'object-curly-spacing': ['error', 'never'], | ||
@@ -67,0 +77,0 @@ 'quotes': ['error', 'single', 'avoid-escape'], |
{ | ||
"name": "eslint-config-cheminfo", | ||
"version": "1.3.2", | ||
"version": "1.4.0", | ||
"description": "Shared ESLint config for cheminfo and ml.js projects", | ||
@@ -21,5 +21,5 @@ "main": "index.js", | ||
"peerDependencies": { | ||
"eslint": "^3.1.1", | ||
"eslint": "^3.3.0", | ||
"eslint-plugin-no-only-tests": "^1.1.0" | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
29802
83