Skip to content

Commit 5c2a296

Browse files
committed
chore: fix lint
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 3dda841 commit 5c2a296

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

  • lib/node_modules/@stdlib/plot/vega/mark/rect/lib

lib/node_modules/@stdlib/plot/vega/mark/rect/lib/main.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* limitations under the License.
1717
*/
1818

19-
/* eslint-disable no-restricted-syntax, no-invalid-this */
19+
/* eslint-disable no-restricted-syntax, no-invalid-this, stdlib/no-empty-lines-between-requires */
2020

2121
'use strict';
2222

@@ -36,6 +36,7 @@ var Mark = require( '@stdlib/plot/vega/mark/base/ctor' );
3636
var format = require( '@stdlib/string/format' );
3737
var properties = require( './properties.json' );
3838
var defaults = require( './defaults.js' );
39+
var TYPE = require( './type/type.js' );
3940

4041
// Note: keep the following in alphabetical order according to the `require` path...
4142
var getCornerRadius = require( './corner-radius/get.js' );
@@ -58,8 +59,6 @@ var getProperties = require( './properties/get.js' );
5859
var getType = require( './type/get.js' );
5960
var setType = require( './type/set.js' );
6061

61-
var TYPE = require( './type/type.js' );
62-
6362

6463
// VARIABLES //
6564

0 commit comments

Comments
 (0)