Skip to content

Commit f4b0c55

Browse files
committed
Add rule to enforce spacing between interfaces
1 parent f300271 commit f4b0c55

File tree

3 files changed

+169
-0
lines changed

3 files changed

+169
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
/**
2+
* @license Apache-2.0
3+
*
4+
* Copyright (c) 2021 The Stdlib Authors.
5+
*
6+
* Licensed under the Apache License, Version 2.0 (the "License");
7+
* you may not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing, software
13+
* distributed under the License is distributed on an "AS IS" BASIS,
14+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
18+
19+
'use strict';
20+
21+
/**
22+
* Lint rule to enforce a specified number of empty lines between interfaces.
23+
*
24+
* @module @stdlib/_tools/repl-txt/rules/interface-spacing
25+
*
26+
* @example
27+
* var rule = require( '@stdlib/_tools/repl-txt/rules/interface-spacing' );
28+
*
29+
* console.log( rule );
30+
*/
31+
32+
// MODULES //
33+
34+
var main = require( './main.js' );
35+
36+
37+
// EXPORTS //
38+
39+
module.exports = main;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
/**
2+
* @license Apache-2.0
3+
*
4+
* Copyright (c) 2021 The Stdlib Authors.
5+
*
6+
* Licensed under the Apache License, Version 2.0 (the "License");
7+
* you may not use this file except in compliance with the License.
8+
* You may obtain a copy of the License at
9+
*
10+
* http://www.apache.org/licenses/LICENSE-2.0
11+
*
12+
* Unless required by applicable law or agreed to in writing, software
13+
* distributed under the License is distributed on an "AS IS" BASIS,
14+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
* See the License for the specific language governing permissions and
16+
* limitations under the License.
17+
*/
18+
19+
'use strict';
20+
21+
// VARIABLES //
22+
23+
var DEFAULT_SPACING = 2;
24+
25+
26+
// MAIN //
27+
28+
/**
29+
* Rule for enforcing a specified number of empty lines between interfaces.
30+
*
31+
* @param {Context} context - lint context
32+
* @returns {Object} validators
33+
*/
34+
function main( context ) {
35+
var spacing = context.options[ 0 ] || DEFAULT_SPACING;
36+
37+
/**
38+
* Checks whether sections appear in the designated order.
39+
*
40+
* @private
41+
* @param {Array} interfaces - function documentation sections
42+
*/
43+
function interfaceSpacing( interfaces ) {
44+
var emptyLines;
45+
var elem;
46+
var end;
47+
var i;
48+
49+
end = interfaces[ 0 ].end;
50+
if ( interfaces.length > 1 ) {
51+
for ( i = 1; i < interfaces.length; i++ ) {
52+
elem = interfaces[ i ];
53+
emptyLines = elem.start - end - 1;
54+
if ( emptyLines !== spacing ) {
55+
context.report( 'Interface documentation sections must be separated by `' + spacing + '` empty lines. Encountered: `'+ emptyLines+'`.', interfaces[ i ] );
56+
}
57+
end = elem.end;
58+
}
59+
}
60+
}
61+
return {
62+
'interfaces': interfaceSpacing
63+
};
64+
}
65+
66+
67+
// EXPORTS //
68+
69+
module.exports = main;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
{
2+
"name": "@stdlib/_tools/repl-txt/rules/interface-spacing",
3+
"version": "0.0.0",
4+
"description": "Lint rule to enforce a specified number of empty lines between interfaces.",
5+
"license": "Apache-2.0",
6+
"author": {
7+
"name": "The Stdlib Authors",
8+
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
9+
},
10+
"contributors": [
11+
{
12+
"name": "The Stdlib Authors",
13+
"url": "https://github.com/stdlib-js/stdlib/graphs/contributors"
14+
}
15+
],
16+
"bin": {},
17+
"main": "./lib",
18+
"directories": {
19+
"lib": "./lib"
20+
},
21+
"scripts": {},
22+
"homepage": "https://github.com/stdlib-js/stdlib",
23+
"repository": {
24+
"type": "git",
25+
"url": "git://github.com/stdlib-js/stdlib.git"
26+
},
27+
"bugs": {
28+
"url": "https://github.com/stdlib-js/stdlib/issues"
29+
},
30+
"dependencies": {},
31+
"devDependencies": {},
32+
"engines": {
33+
"node": ">=0.10.0",
34+
"npm": ">2.7.0"
35+
},
36+
"os": [
37+
"aix",
38+
"darwin",
39+
"freebsd",
40+
"linux",
41+
"macos",
42+
"openbsd",
43+
"sunos",
44+
"win32",
45+
"windows"
46+
],
47+
"keywords": [
48+
"stdlib",
49+
"tools",
50+
"tool",
51+
"repl.txt",
52+
"repl",
53+
"lint",
54+
"custom",
55+
"rules",
56+
"rule",
57+
"plugin",
58+
"interface",
59+
"spacing"
60+
]
61+
}

0 commit comments

Comments
 (0)