eslint-config-azuriru 2.1.0 → 2.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +1 -18
- package/package.json +1 -1
- package/react.js +4 -0
package/index.js
CHANGED
|
@@ -148,24 +148,7 @@ module.exports = {
|
|
|
148
148
|
'warn',
|
|
149
149
|
'windows'
|
|
150
150
|
],
|
|
151
|
-
'@stylistic/lines-around-comment':
|
|
152
|
-
'warn',
|
|
153
|
-
{
|
|
154
|
-
beforeBlockComment: true,
|
|
155
|
-
afterBlockComment: false,
|
|
156
|
-
beforeLineComment: true,
|
|
157
|
-
allowBlockStart: true,
|
|
158
|
-
allowBlockEnd: true, // Weird but okay,
|
|
159
|
-
allowObjectStart: true,
|
|
160
|
-
allowObjectEnd: true,
|
|
161
|
-
allowArrayStart: true,
|
|
162
|
-
allowArrayEnd: true,
|
|
163
|
-
allowClassStart: true,
|
|
164
|
-
allowClassEnd: true,
|
|
165
|
-
applyDefaultIgnorePatterns: true,
|
|
166
|
-
afterHashbangComment: true // looks important
|
|
167
|
-
}
|
|
168
|
-
],
|
|
151
|
+
'@stylistic/lines-around-comment': 'off',
|
|
169
152
|
'@stylistic/lines-between-class-members': [
|
|
170
153
|
'warn',
|
|
171
154
|
'always',
|
package/package.json
CHANGED