Repository URL to install this package:
|
Version:
2.0.2 ▾
|
module.exports = {
rules: {
// https://github.com/airbnb/javascript#comments--spaces
// http://eslint.org/docs/rules/spaced-comment
// 'spaced-comment': ['error', 'always'],
// @NOTE reasoning is we want //---- as separators
// { 'exceptions': ['-+'] }
'spaced-comment': ['error', 'always'],
// https://eslint.org/docs/rules/line-comment-position
'line-comment-position': ['error', { position: 'above' }],
// 'spaced-comment': ['OFF'],
'lines-around-comment': ['OFF'],
},
}