We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6184703 + 8e54961 commit ceb4195Copy full SHA for ceb4195
packages/eslint-config-airbnb/rules/style.js
@@ -36,14 +36,8 @@ module.exports = {
36
'linebreak-style': 0,
37
// specify the maximum length of a line in your program
38
// https://github.com/eslint/eslint/blob/master/docs/rules/max-len.md
39
- 'max-len': [2, {
40
- 'code': 100,
41
- 'comments': 100,
42
- 'commentLength': 100,
43
- 'tabWidth': 2,
+ 'max-len': [2, 100, 2, {
44
'ignoreUrls': false,
45
- 'ignorePattern': null,
46
- 'ignoreTrailingComments': false,
47
'ignoreComments': false
48
}],
49
// specify the maximum depth callbacks can be nested
0 commit comments