Skip to content

Commit cb4ab8f

Browse files
author
Caleb Cassel
committed
Revert some unwanted changes
1 parent b483933 commit cb4ab8f

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

es5/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@
194194
var fullName = 'Bob ' + this.lastName;
195195
```
196196

197-
- Strings longer than 100 characters should be written across multiple lines using string concatenation.
197+
- Strings longer than 80 characters should be written across multiple lines using string concatenation.
198198
- Note: If overused, long strings with concatenation could impact performance. [jsPerf](http://jsperf.com/ya-string-concat) & [Discussion](https://github.com/airbnb/javascript/issues/40).
199199

200200
```javascript
@@ -1671,7 +1671,6 @@
16711671
- **SeekingAlpha**: [seekingalpha/javascript-style-guide](https://github.com/seekingalpha/javascript-style-guide)
16721672
- **Shutterfly**: [shutterfly/javascript](https://github.com/shutterfly/javascript)
16731673
- **StudentSphere**: [studentsphere/javascript](https://github.com/studentsphere/javascript)
1674-
- **Super**: [SuperJobs/javascript](https://github.com/SuperJobs/javascript)
16751674
- **Target**: [target/javascript](https://github.com/target/javascript)
16761675
- **TheLadders**: [TheLadders/javascript](https://github.com/TheLadders/javascript)
16771676
- **T4R Technology**: [T4R-Technology/javascript](https://github.com/T4R-Technology/javascript)

linters/.jshintrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
// Prohibit use of a variable before it is defined.
3535
"latedef": true,
3636

37-
// Enforce line length to 100 characters
38-
"maxlen": 100,
37+
// Enforce line length to 120 characters
38+
"maxlen": 120,
3939

4040
// Require capitalized names for constructor functions.
4141
"newcap": true,

linters/SublimeLinter/SublimeLinter.sublime-settings

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@
6363

6464
// Warn when variables are defined but never used.
6565
"unused": true,
66-
67-
// Enforce line length to 80 characters
68-
"maxlen": 80,
66+
67+
// Enforce line length to 120 characters
68+
"maxlen": 120,
6969

7070
// Enforce placing 'use strict' at the top function scope
7171
"strict": true

0 commit comments

Comments
 (0)