eslint-config-defaults
Advanced tools
Comparing version 0.3.5 to 0.3.6
@@ -0,1 +1,7 @@ | ||
## 0.3.6 (2015-06-17) | ||
#### User Facing Changes | ||
* * README Updates | ||
## 0.3.5 (2015-06-17) | ||
@@ -2,0 +8,0 @@ |
@@ -17,3 +17,3 @@ { | ||
"version" : "0.3.5", | ||
"version" : "0.3.6", | ||
"author" : "Eric Baer <me@ericbaer.com>", | ||
@@ -20,0 +20,0 @@ |
@@ -24,3 +24,3 @@ # eslint-config-strict | ||
- `defaults` - The default ES5 config | ||
- `defaults/off` - Turns off all rules. | ||
- `defaults/off` - Turns off all rules. This will be ESLint's default after 1.0.0 | ||
- `defaults/es5-browser` - The default ES5 config with browser globals | ||
@@ -49,11 +49,5 @@ - `defaults/es5-node` - The default ES5 config with node globals and rules | ||
```json | ||
{ | ||
"extends": ["defaults/es6-browser", "defaults/es6-node"] | ||
} | ||
``` | ||
#### Piecemeal Configurations | ||
Every test in ESLint is broken out into categories that mirror the documentation. Each of the | ||
ESLint configuration is broken out into categories that mirror the documentation. Each of the | ||
following directories can be included as a set of defaults or by including the `off.js` file which | ||
@@ -68,9 +62,15 @@ turns off every rule in this category. | ||
{ | ||
"extends": ["defaults/es6-browser", "defaults/legacy/defaults.js"] | ||
} | ||
``` | ||
```json | ||
{ | ||
"extends": [ | ||
"./node_modules/eslint-config-defaults/best-practices/default.js", | ||
"./node_modules/eslint-config-defaults/errors/default.js" | ||
"defaults/best-practices/default.js", | ||
"defaults/errors/default.js" | ||
"./node_modules/eslint-config-defaults/es6/off.js" | ||
"./node_modules/eslint-config-defaults/legacy/off.js" | ||
"./node_modules/eslint-config-defaults/node/off.js" | ||
"defaults/es6/off.js" | ||
"defaults/legacy/off.js" | ||
"defaults/node/off.js" | ||
] | ||
@@ -77,0 +77,0 @@ |
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
33642