eslint-config-cheminfo
Advanced tools
Comparing version 1.0.0 to 1.1.0
@@ -0,1 +1,12 @@ | ||
<a name="1.1.0"></a> | ||
# [1.1.0](https://github.com/cheminfo/eslint-config/compare/v1.0.0...v1.1.0) (2016-07-26) | ||
### Features | ||
* add no-only-tests rule ([20ef906](https://github.com/cheminfo/eslint-config/commit/20ef906)) | ||
* add some rules from roc ([f76b046](https://github.com/cheminfo/eslint-config/commit/f76b046)) | ||
<a name="1.0.0"></a> | ||
@@ -2,0 +13,0 @@ # 1.0.0 (2016-07-18) |
15
index.js
@@ -9,2 +9,5 @@ 'use strict'; | ||
extends: 'eslint:recommended', | ||
plugins: [ | ||
'no-only-tests' | ||
], | ||
rules: { | ||
@@ -15,3 +18,3 @@ 'brace-style': ['error', '1tbs'], | ||
'comma-style': 'error', | ||
'eol-last': 'error', | ||
'eol-last': ['error', 'allow-null'], | ||
'eqeqeq': 'error', | ||
@@ -22,3 +25,6 @@ 'indent': ['error', 4, {SwitchCase: 1}], | ||
'new-parens': 'error', | ||
'quotes': ['error', 'single'], | ||
'no-cond-assign': 'error', | ||
'no-multiple-empty-lines': ['error', {max: 2, maxEOF: 1, maxBOF: 1}], | ||
'no-trailing-spaces': 'error', | ||
'quotes': ['error', 'single', 'avoid-escape'], | ||
'semi': 'error', | ||
@@ -29,5 +35,6 @@ 'semi-spacing': ['error', {after: true, before: false}], | ||
'space-in-parens': ['error', 'never'], | ||
'space-infix-ops': ['error'], | ||
'space-unary-ops': ['error'] | ||
'space-infix-ops': 'error', | ||
'space-unary-ops': 'error', | ||
'no-only-tests/no-only-tests': 'error' | ||
} | ||
}; |
{ | ||
"name": "eslint-config-cheminfo", | ||
"version": "1.0.0", | ||
"version": "1.1.0", | ||
"description": "Shared ESLint config for cheminfo and ml.js projects", | ||
@@ -19,3 +19,6 @@ "main": "index.js", | ||
}, | ||
"homepage": "https://github.com/cheminfo/eslint-config#readme" | ||
"homepage": "https://github.com/cheminfo/eslint-config#readme", | ||
"dependencies": { | ||
"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
21205
35
1
+ Addedeslint-plugin-no-only-tests@1.2.0(transitive)