Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Bye bye coffee lint and use standard #76

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .coffeelintignore

This file was deleted.

4 changes: 1 addition & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: "{build}"

platform: x64

branches:
Expand All @@ -18,7 +16,7 @@ environment:
- ATOM_CHANNEL: beta

install:
- ps: Install-Product node 4
- ps: Install-Product node 6

build_script:
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/atom/ci/master/build-package.ps1'))
Expand Down
37 changes: 0 additions & 37 deletions coffeelint.json

This file was deleted.

1 change: 1 addition & 0 deletions lib/command-palette-view.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ export default class CommandPaletteView {
didConfirmSelection: (keyBinding) => {
debugger
this.hide()
let CustomEvent = window.CustomEvent
const event = new CustomEvent(keyBinding.name, {bubbles: true, cancelable: true})
this.activeElement.dispatchEvent(event)
},
Expand Down
10 changes: 9 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
"engines": {
"atom": "*"
},
"scripts": {
"test": "standard lib/**/*.js test/**/*.js && atom --test test/*.test.js"
},
"atomTestRunner": "atom-mocha-test-runner",
"dependencies": {
"atom-select-list": "0.0.5",
Expand All @@ -22,7 +25,7 @@
},
"devDependencies": {
"atom-mocha-test-runner": "^0.3.0",
"coffeelint": "^1.9.7"
"standard": "^8.6.0"
},
"configSchema": {
"useAlternateScoring": {
Expand All @@ -35,5 +38,10 @@
"default": false,
"description": "Preserve the last search when reopening the command palette."
}
},
"standard": {
"globals": [
"atom"
]
}
}