Skip to content
This repository was archived by the owner on Jun 14, 2024. It is now read-only.

Commit 2aecbef

Browse files
authored
one true brace style + enforced curlies (#10)
* one true brace style * allow single line * change magic numbers to enums
1 parent aad14a7 commit 2aecbef

File tree

3 files changed

+22
-19
lines changed

3 files changed

+22
-19
lines changed

constants.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ module.exports = {
77
single: 'single',
88
any: 'any',
99
never: 'never',
10-
always: 'always'
10+
always: 'always',
11+
all: 'all'
1112
}

node.js

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict'
22

3-
const { error, never, always, off, single } = require('./constants')
3+
const { warn, error, never, always, off, single, all } = require('./constants')
44

55
module.exports = {
66

@@ -44,7 +44,7 @@ module.exports = {
4444

4545
rules: {
4646
'no-useless-constructor': error,
47-
'comma-dangle': [ 1, never ],
47+
'comma-dangle': [ warn, never ],
4848
'max-len': off,
4949
'no-console': off,
5050
'no-mixed-spaces-and-tabs': error,
@@ -53,11 +53,13 @@ module.exports = {
5353
'no-undefined': off,
5454
'no-use-before-define': [ error, { functions: false, classes: true } ],
5555
'object-curly-spacing': [ error, always ],
56-
'array-bracket-spacing': [ error, always, { objectsInArrays: false } ],
56+
'array-bracket-spacing': [ error, always ],
5757
'quotes': [ error, single ],
5858
'semi': [ error, never ],
59-
'space-before-function-paren': 0,
59+
'space-before-function-paren': off,
6060
'keyword-spacing': error,
61-
'eol-last': [ error, always ]
61+
'eol-last': [ error, always ],
62+
'brace-style': [ error, '1tbs', { allowSingleLine: true } ],
63+
'curly': [ error, all ]
6264
}
6365
}

react.js

+13-13
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict'
22

3-
const { error, any } = require('./constants')
3+
const { warn, off, error, any } = require('./constants')
44

55
module.exports = {
66

@@ -17,11 +17,11 @@ module.exports = {
1717

1818
rules: {
1919
'jsx-quotes': [ error, 'prefer-double' ],
20-
'react/jsx-indent': [ 1, 2 ],
21-
'react/jsx-indent-props': [ 1, 2 ],
22-
'react/forbid-prop-types': [ 2, { 'forbid': [ any ] } ],
23-
'react/jsx-boolean-value': [ 0 ],
24-
'react/sort-comp': [ 2, {
20+
'react/jsx-indent': [ warn, 2 ],
21+
'react/jsx-indent-props': [ warn, 2 ],
22+
'react/forbid-prop-types': [ error, { 'forbid': [ any ] } ],
23+
'react/jsx-boolean-value': [ off ],
24+
'react/sort-comp': [ error, {
2525
'order': [
2626
'static-methods',
2727
'lifecycle',
@@ -53,12 +53,12 @@ module.exports = {
5353
'componentWillUnmount'
5454
]
5555
}
56-
}],
57-
'react/jsx-pascal-case': 2,
58-
'react/no-did-mount-set-state': 2,
59-
'react/no-did-update-set-state': 2,
60-
'react/no-unused-prop-types': 1,
61-
'react/no-multi-comp': [ 1, { ignoreStateless: true } ],
62-
'react/prefer-stateless-function': 2
56+
} ],
57+
'react/jsx-pascal-case': error,
58+
'react/no-did-mount-set-state': error,
59+
'react/no-did-update-set-state': error,
60+
'react/no-unused-prop-types': warn,
61+
'react/no-multi-comp': [ warn, { ignoreStateless: true } ],
62+
'react/prefer-stateless-function': error
6363
}
6464
}

0 commit comments

Comments
 (0)