This repository was archived by the owner on May 24, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +24
-10
lines changed Expand file tree Collapse file tree 2 files changed +24
-10
lines changed Original file line number Diff line number Diff line change 67
67
// Warn when variables are defined but never used.
68
68
"unused" : true ,
69
69
70
- // Enforce line length to 80 characters
71
- "maxlen" : 80 ,
70
+ // Enforce line length to 100 characters
71
+ "maxlen" : 100 ,
72
72
73
73
// Enforce placing 'use strict' at the top function scope
74
74
"strict" : true ,
91
91
"plusplus" : false ,
92
92
93
93
// Tolerate all forms of subscript notation besides dot notation e.g. `dict['key']` instead of `dict.key`.
94
- "subsub " : false ,
94
+ "sub " : false ,
95
95
96
96
/*
97
- * OPTIONAL OPTIONS
97
+ * Extra Digitpaint options
98
98
* =================
99
99
*/
100
100
101
- // Do not allow bitwise operations
102
- "bitwise" : true
101
+ // Allow bitwise operations
102
+ "bitwise" : false ,
103
+
104
+ // Don't allow extending of native objects
105
+ "freeze" : true ,
106
+
107
+ // Don't allow non-breaking whitespace
108
+ "nonbsp" : true
109
+
103
110
}
104
111
}
Original file line number Diff line number Diff line change 76
76
"plusplus" : false,
77
77
78
78
// Tolerate all forms of subscript notation besides dot notation e.g. `dict['key']` instead of `dict.key`.
79
- "subsub ": false,
79
+ "sub ": false,
80
80
81
81
/*
82
- * OPTIONAL OPTIONS
82
+ * Extra Digitpaint options
83
83
* =================
84
84
*/
85
85
86
- // Do not allow bitwise operations
87
- "bitwise": true
86
+ // Allow bitwise operations
87
+ "bitwise": false,
88
+
89
+ // Don't allow extending of native objects
90
+ "freeze" : true,
91
+
92
+ // Don't allow non-breaking whitespace
93
+ "nonbsp" : true
94
+
88
95
}
89
96
90
97
You can’t perform that action at this time.
0 commit comments