Skip to content

Commit

Permalink
Merge pull request #5 from NotNinja/develop
Browse files Browse the repository at this point in the history
Release 0.2.3
  • Loading branch information
neocotic authored Jul 20, 2017
2 parents 1b02f24 + 0351768 commit 13a14b6
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 21 deletions.
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## Version 0.2.3, 2017.07.20

* Disable `array-bracket-newline` rule
* Disable `array-element-newline` rule
* Disable `class-methods-use-this` rule
* Disable `object-curly-newline` rule

## Version 0.2.2, 2017.07.03

* Disable `no-magic-numbers` rule again
Expand Down
21 changes: 3 additions & 18 deletions es5.js
Original file line number Diff line number Diff line change
Expand Up @@ -177,22 +177,12 @@ module.exports = {
'no-restricted-modules': 'off',
'no-sync': 'off',

'array-bracket-newline': [
'error',
{
'multiline': true
}
],
'array-bracket-newline': 'off',
'array-bracket-spacing': [
'error',
'always'
],
'array-element-newline': [
'error',
{
'multiline': true
}
],
'array-element-newline': 'off',
'block-spacing': 'error',
'brace-style': 'error',
'camelcase': 'error',
Expand Down Expand Up @@ -284,12 +274,7 @@ module.exports = {
'error',
'below'
],
'object-curly-newline': [
'error',
{
'multiline': true
}
],
'object-curly-newline': 'off',
'object-curly-spacing': [
'error',
'always'
Expand Down
2 changes: 1 addition & 1 deletion es6.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ module.exports = {
ecmaVersion: 6
},
rules: {
'class-methods-use-this': 'warn',
'class-methods-use-this': 'off',
'no-empty-pattern': 'error',
'prefer-promise-reject-errors': 'error',
'template-tag-spacing': [
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-notninja",
"version": "0.2.2",
"version": "0.2.3",
"description": "Standard ESLint configurations for !ninja packages",
"homepage": "https://github.com/NotNinja/eslint-config-notninja",
"bugs": {
Expand Down

0 comments on commit 13a14b6

Please sign in to comment.