Skip to content

Commit c349d21

Browse files
committed
fix: add minimap as dependency
1 parent 0264d0d commit c349d21

File tree

6 files changed

+7884
-7
lines changed

6 files changed

+7884
-7
lines changed

.eslintrc.js

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
module.exports = {
2+
env: {
3+
es6: true,
4+
browser: true,
5+
node: true,
6+
jasmine: true,
7+
atomtest: true,
8+
},
9+
extends: [
10+
'standard',
11+
],
12+
globals: {
13+
atom: 'readonly',
14+
},
15+
parserOptions: {
16+
ecmaVersion: 2018,
17+
},
18+
rules: {
19+
'no-warning-comments': 'warn',
20+
'comma-dangle': ['error', 'always-multiline'],
21+
indent: ['error', 'tab', { SwitchCase: 1 }],
22+
'no-tabs': ['error', { allowIndentationTabs: true }],
23+
'no-restricted-globals': [
24+
'error',
25+
{
26+
name: 'fit',
27+
message: 'Do not commit focused tests.',
28+
},
29+
{
30+
name: 'fdescribe',
31+
message: 'Do not commit focused tests.',
32+
},
33+
],
34+
'no-sync': 'error',
35+
},
36+
}

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# minimap-highlight-selected package
22

3+
[![Build Status](https://github.com/atom-minimap/minimap-highlight-selected/workflows/CI/badge.svg)](https://github.com/atom-minimap/minimap-highlight-selected/actions)
4+
35
A minimap binding for the [highlight-selected package](https://github.com/richrace/highlight-selected).
46

57
![Screenshot](https://github.com/atom-minimap/minimap-highlight-selected/blob/master/screenshot.png?raw=true)

0 commit comments

Comments
 (0)